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 /admin | |
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 |
1 files changed, 8 insertions, 8 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'), |