diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-09-01 21:39:29 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-09-01 21:39:29 +0000 |
commit | 2dbc66da3bcb2903055b0269f65f9db18174c87b (patch) | |
tree | e80ccf0d4c0c6d135a24f221f4cf52a01b4340b3 /template | |
parent | f13b345dcfcab905a091d419073e0550d7e7cb1b (diff) |
- new special category : random pictures
- reorganisation of special categories menu : template is used only for
template. A special category is presented as the template tells to do so.
- favorites becomes just another special category
- bug correction for best rated category : wrong MySQL query if user has
forbidden categories (see include/functions_category.inc.php diff)
git-svn-id: http://piwigo.org/svn/trunk@510 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/default/category.tpl | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/template/default/category.tpl b/template/default/category.tpl index d718784f5..83210e4a2 100644 --- a/template/default/category.tpl +++ b/template/default/category.tpl @@ -13,16 +13,11 @@ <div class="totalImages">[ {NB_PICTURE} {L_TOTAL} ]</div> <br /> <ul class="menu"> - <!-- BEGIN favorites --> - <li><a href="{U_FAVORITE}"><span title="{L_FAVORITE_HINT}">{L_FAVORITE}</span></a> <span class="menuInfoCat">[ {favorites.NB_FAV} ]</span></li> - <!-- END favorites --> <li><span style="font-weight:bold;">{L_SPECIAL_CATEGORIES}</span></li> <ul class="menu"> - <li><a href="{U_MOST_VISITED}"><span title="{L_MOST_VISITED_HINT}">{TOP_NUMBER} {L_MOST_VISITED}</span></a></li> - <li><a href="{U_BEST_RATED}"><span title="{L_BEST_RATED_HINT}">{TOP_NUMBER} {L_BEST_RATED}</span></a></li> - <li><a href="{U_RECENT_PICS}"><span title="{L_RECENT_PICS_HINT}">{L_RECENT_PICS}</span></a> {T_SHORT}</li> - <li><a href="{U_RECENT_CATS}"><span title="{L_RECENT_CATS_HINT}">{L_RECENT_CATS}</span></a></li> - <li><a href="{U_CALENDAR}"><span title="{L_CALENDAR_HINT}">{L_CALENDAR}</span></a></li> + <!-- BEGIN special_cat --> + <li><a href="{special_cat.URL}" title="{special_cat.TITLE}">{special_cat.NAME}</a></li> + <!-- END special_cat --> </ul> </ul> </div> |