diff options
author | rub <rub@piwigo.org> | 2006-03-08 23:14:53 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2006-03-08 23:14:53 +0000 |
commit | b263f0c996eac52afc222b99fb1e9bcb6b064d65 (patch) | |
tree | 2cb3716ad84764801710483ab7538589c177a6a6 /category.php | |
parent | cba56c06ede13f30483ca587f0c79cb0e4d82aaa (diff) |
Step 1 improvement issue 0000301:
o Change status of table #_user_infos
o Don't send password to webmaster, guest, generic
Next Step:
o Functions Check of status
o Restricted Access for user generic
git-svn-id: http://piwigo.org/svn/trunk@1070 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'category.php')
-rw-r--r-- | category.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/category.php b/category.php index 898b48bf7..c10269bf8 100644 --- a/category.php +++ b/category.php @@ -368,7 +368,7 @@ else $template->assign_block_vars('logout', array()); } - if ('admin' == $user['status']) + if (is_admin()) { $template->assign_block_vars('admin', array()); } @@ -408,7 +408,7 @@ $template->assign_block_vars( if (isset($page['cat']) and is_numeric($page['cat']) - and 'admin' == $user['status']) + and is_admin()) { $template->assign_block_vars( 'edit', |