Changeset 782:01efbf050a8a for plugins/tags/tags.php
- Timestamp:
- 12/06/11 11:43:14 (14 years ago)
- Branch:
- formfilters
- Parents:
- 781:b509ac00bf4a (diff), 779:58c45f1b96e5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/tags/tags.php
r711 r782 43 43 $col = 1; 44 44 } 45 $cols[$col] .= '<tr class="tagLetter"><t d colspan="2"><span>'.$letter.'</span></td></tr>';45 $cols[$col] .= '<tr class="tagLetter"><th scope="row" colspan="2"><span>'.$letter.'</span></th></tr>'; 46 46 } 47 47 48 48 $cols[$col] .= 49 49 '<tr class="line">'. 50 '<t dclass="maximal"><a href="'.$p_url.51 '&m=tag_posts&tag='.rawurlencode($tags->meta_id).'">'.$tags->meta_id.'</a></t d>'.50 '<th scope="row" class="maximal"><a href="'.$p_url. 51 '&m=tag_posts&tag='.rawurlencode($tags->meta_id).'">'.$tags->meta_id.'</a></th>'. 52 52 '<td class="nowrap"><strong>'.$tags->count.'</strong> '. 53 53 (($tags->count==1) ? __('entry') : __('entries')).'</td>'. … … 57 57 } 58 58 59 $table = '<div class="col"><table class="tags">%s</table></div>'; 59 $table = 60 '<div class="col"><table class="tags"><caption>'. 61 __('Tags list'). 62 '</caption><tbody>%s</tbody></table></div>'; 60 63 61 64 if ($cols[0]) -
plugins/tags/tags.php
r457 r782 4 4 # This file is part of Dotclear 2. 5 5 # 6 # Copyright (c) 2003-201 0Olivier Meunier & Association Dotclear6 # Copyright (c) 2003-2011 Olivier Meunier & Association Dotclear 7 7 # Licensed under the GPL version 2.0 license. 8 8 # See LICENSE file or … … 15 15 <html> 16 16 <head> 17 <title> Tags</title>17 <title><?php echo __('Tags'); ?></title> 18 18 <link rel="stylesheet" type="text/css" href="index.php?pf=tags/style.css" /> 19 19 </head> … … 21 21 <body> 22 22 <h2><?php echo html::escapeHTML($core->blog->name); ?> › 23 < ?php echo __('Tags'); ?></h2>23 <span class="page-title"><?php echo __('Tags'); ?></span></h2> 24 24 25 25 <?php
Note: See TracChangeset
for help on using the changeset viewer.