Changeset 457:e2c2754452b1 for plugins/tags
- Timestamp:
- 06/30/11 19:38:28 (14 years ago)
- Branch:
- formfilters
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/tags/tags.php
r0 r457 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])
Note: See TracChangeset
for help on using the changeset viewer.