diff options
author | rub <rub@piwigo.org> | 2008-02-27 22:00:13 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-02-27 22:00:13 +0000 |
commit | aed45457d79401bea60b556456ffc36dd7df889f (patch) | |
tree | 59081639f4781f7b1c6fbe9aaa8ae6cf58e908a7 /include/functions_user.inc.php | |
parent | bf4012291a878c3f22fa318595e2ca7881c2978a (diff) |
little corrections
Merge branch-1_7 2219:2220 into BSF
git-svn-id: http://piwigo.org/svn/trunk@2221 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_user.inc.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php index 16a67fd8d..53d6da3c1 100644 --- a/include/functions_user.inc.php +++ b/include/functions_user.inc.php @@ -2,7 +2,7 @@ // +-----------------------------------------------------------------------+ // | PhpWebGallery - a PHP based picture gallery | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | -// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | +// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ // | file : $Id$ // | last update : $Date$ @@ -1132,9 +1132,10 @@ function get_access_type_status($user_status='') $access_type_status = ACCESS_WEBMASTER; break; } - case 'default': + default: { $access_type_status = ACCESS_NONE; + break; } } |