diff options
author | plegall <plg@piwigo.org> | 2004-11-24 21:57:22 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2004-11-24 21:57:22 +0000 |
commit | a8acded5b0302a462211b46dd9dd2bb762d5af9a (patch) | |
tree | 9e1e6fb96c97a9dfd8cdf5466bdb5b1a3d417ade | |
parent | d5d57dc397f338dc921fab2219b5f3a09f7773ad (diff) |
distinction between categories' admin menus and others (comments for
categories is not the same as users comments)
git-svn-id: http://piwigo.org/svn/trunk@620 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin.php | 16 | ||||
-rw-r--r-- | template/default/admin.tpl | 8 |
2 files changed, 12 insertions, 12 deletions
@@ -199,10 +199,10 @@ $template->assign_vars(array( 'L_GROUPS'=>$lang['groups'], 'L_AUTH'=>$lang['permissions'], 'L_UPDATE'=>$lang['update'], - 'L_UPLOAD'=>$lang['cat_options_upload_menu'], - 'L_COMMENTS'=>$lang['cat_options_comments_menu'], - 'L_VISIBLE'=>$lang['cat_options_visible_menu'], - 'L_STATUS'=>$lang['cat_options_status_menu'], + 'L_CAT_UPLOAD'=>$lang['cat_options_upload_menu'], + 'L_CAT_COMMENTS'=>$lang['cat_options_comments_menu'], + 'L_CAT_VISIBLE'=>$lang['cat_options_visible_menu'], + 'L_CAT_STATUS'=>$lang['cat_options_status_menu'], 'U_CONFIG_GENERAL'=>add_session_id($conf_link.'general' ), 'U_CONFIG_COMMENTS'=>add_session_id($conf_link.'comments' ), @@ -215,10 +215,10 @@ $template->assign_vars(array( 'U_USERS'=>add_session_id($link_start.'user_search' ), 'U_GROUPS'=>add_session_id($link_start.'group_list' ), 'U_CATEGORIES'=>add_session_id($link_start.'cat_list' ), - 'U_UPLOAD'=>add_session_id($opt_link.'upload'), - 'U_COMMENTS'=>add_session_id($opt_link.'comments'), - 'U_VISIBLE'=>add_session_id($opt_link.'visible'), - 'U_STATUS'=>add_session_id($opt_link.'status'), + 'U_CAT_UPLOAD'=>add_session_id($opt_link.'upload'), + 'U_CAT_COMMENTS'=>add_session_id($opt_link.'comments'), + 'U_CAT_VISIBLE'=>add_session_id($opt_link.'visible'), + 'U_CAT_STATUS'=>add_session_id($opt_link.'status'), 'U_WAITING'=>add_session_id($link_start.'waiting' ), 'U_COMMENTS'=>add_session_id($link_start.'comments' ), 'U_CAT_UPDATE'=>add_session_id($link_start.'update'), diff --git a/template/default/admin.tpl b/template/default/admin.tpl index d21761883..1652bb45c 100644 --- a/template/default/admin.tpl +++ b/template/default/admin.tpl @@ -37,10 +37,10 @@ <div class="menu"> <ul class="menu"> <li><a class="adminMenu" href="{U_CATEGORIES}">{L_MANAGE}</a></li> - <li><a class="adminMenu" href="{U_UPLOAD}">{L_UPLOAD}</a></li> - <li><a class="adminMenu" href="{U_COMMENTS}">{L_COMMENTS}</a></li> - <li><a class="adminMenu" href="{U_VISIBLE}">{L_VISIBLE}</a></li> - <li><a class="adminMenu" href="{U_STATUS}">{L_STATUS}</a></li> + <li><a class="adminMenu" href="{U_CAT_UPLOAD}">{L_CAT_UPLOAD}</a></li> + <li><a class="adminMenu" href="{U_CAT_COMMENTS}">{L_CAT_COMMENTS}</a></li> + <li><a class="adminMenu" href="{U_CAT_VISIBLE}">{L_CAT_VISIBLE}</a></li> + <li><a class="adminMenu" href="{U_CAT_STATUS}">{L_CAT_STATUS}</a></li> </ul> </div> <div class="titreMenu">{L_IMAGES}</div> |