- new : external authentication in another users table. Previous users table
is divided between users (common properties with any web application) and user_infos (phpwebgallery specific informations). External table and fields can be configured. - modification : profile.php is not reachable through administration anymore (not useful). - modification : in profile.php, current password is mandatory only if user tries to change his password. Username can't be changed. - deletion : of obsolete functions get_user_restrictions, update_user_restrictions, get_user_all_restrictions, is_user_allowed, update_user - modification : $user['forbidden_categories'] equals at least "-1" so that category_id NOT IN ($user['forbidden_categories']) can always be used. - modification : user_forbidden table becomes user_cache so that not only restriction informations can be stored in this table. git-svn-id: http://piwigo.org/svn/trunk@808 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
8b97a8154e
commit
273884a652
23 changed files with 633 additions and 736 deletions
|
|
@ -30,9 +30,6 @@ define('PHPWG_VERSION', '%PWGVERSION%');
|
|||
define('PHPWG_URL', 'http://www.phpwebgallery.net');
|
||||
define('PHPWG_FORUM_URL', 'http://forum.phpwebgallery.net');
|
||||
|
||||
// User level
|
||||
define('ANONYMOUS', 2);
|
||||
|
||||
// Error codes
|
||||
define('GENERAL_MESSAGE', 200);
|
||||
define('GENERAL_ERROR', 202);
|
||||
|
|
@ -53,10 +50,11 @@ define('SESSIONS_TABLE', $prefixeTable.'sessions');
|
|||
define('SITES_TABLE', $prefixeTable.'sites');
|
||||
define('USER_ACCESS_TABLE', $prefixeTable.'user_access');
|
||||
define('USER_GROUP_TABLE', $prefixeTable.'user_group');
|
||||
define('USERS_TABLE', $prefixeTable.'users');
|
||||
define('USERS_TABLE', $conf['users_table']);
|
||||
define('USER_INFOS_TABLE', $prefixeTable.'user_infos');
|
||||
define('WAITING_TABLE', $prefixeTable.'waiting');
|
||||
define('IMAGE_METADATA_TABLE', $prefixeTable.'image_metadata');
|
||||
define('RATE_TABLE', $prefixeTable.'rate');
|
||||
define('USER_FORBIDDEN_TABLE', $prefixeTable.'user_forbidden');
|
||||
define('USER_CACHE_TABLE', $prefixeTable.'user_cache');
|
||||
define('CADDIE_TABLE', $prefixeTable.'caddie');
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue