Changeset 4357
- Timestamp:
- Nov 24, 2009, 11:19:27 AM (15 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/config_default.inc.php
r4280 r4357 495 495 // All informations contained in these tables and column are related to 496 496 // piwigo_users table. 497 // 498 // You can use a different table for users, if you define associated constant 499 // default configuration : 500 // define('USERS_TABLE', $prefixeTable.'users'); 497 $conf['users_table'] = $prefixeTable.'users'; 501 498 502 499 // Other tables can be changed, if you define associated constants 503 500 // Example: 504 501 // define('USER_INFOS_TABLE', 'pwg_main'.'user_infos'); 505 506 502 507 503 // user_fields : mapping between generic field names and table specific -
trunk/include/constants.php
r4280 r4357 69 69 define('USER_GROUP_TABLE', $prefixeTable.'user_group'); 70 70 if (!defined('USERS_TABLE')) 71 define('USERS_TABLE', $ prefixeTable.'users');71 define('USERS_TABLE', $conf['users_table']); 72 72 if (!defined('USER_INFOS_TABLE')) 73 73 define('USER_INFOS_TABLE', $prefixeTable.'user_infos');
Note: See TracChangeset
for help on using the changeset viewer.