Ignore:
Timestamp:
Aug 8, 2005, 10:52:19 PM (19 years ago)
Author:
plg
Message:
  • 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 table becomes user_cache so that not only restriction informations can be stored in this table.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/constants.php

    r769 r808  
    3131define('PHPWG_FORUM_URL', 'http://forum.phpwebgallery.net');
    3232
    33 // User level
    34 define('ANONYMOUS', 2);
    35  
    3633// Error codes
    3734define('GENERAL_MESSAGE', 200);
     
    5451define('USER_ACCESS_TABLE', $prefixeTable.'user_access');
    5552define('USER_GROUP_TABLE', $prefixeTable.'user_group');
    56 define('USERS_TABLE', $prefixeTable.'users');
     53define('USERS_TABLE', $conf['users_table']);
     54define('USER_INFOS_TABLE', $prefixeTable.'user_infos');
    5755define('WAITING_TABLE', $prefixeTable.'waiting');
    5856define('IMAGE_METADATA_TABLE', $prefixeTable.'image_metadata');
    5957define('RATE_TABLE', $prefixeTable.'rate');
    60 define('USER_FORBIDDEN_TABLE', $prefixeTable.'user_forbidden');
     58define('USER_CACHE_TABLE', $prefixeTable.'user_cache');
    6159define('CADDIE_TABLE', $prefixeTable.'caddie');
    6260?>
Note: See TracChangeset for help on using the changeset viewer.