From 1a55452a4fdcf5b72a327736687a2d283bba1876 Mon Sep 17 00:00:00 2001 From: rub Date: Fri, 21 Sep 2007 21:23:09 +0000 Subject: Resolved 0000748: Name configuration of all the tables New method of implementation! git-svn-id: http://piwigo.org/svn/trunk@2104 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/include/functions_check_integrity.inc.php | 2 +- admin/include/functions_upgrade.php | 65 +++++++++++++------------ 2 files changed, 34 insertions(+), 33 deletions(-) (limited to 'admin') diff --git a/admin/include/functions_check_integrity.inc.php b/admin/include/functions_check_integrity.inc.php index 65b7aa2b0..fb97681c4 100644 --- a/admin/include/functions_check_integrity.inc.php +++ b/admin/include/functions_check_integrity.inc.php @@ -305,7 +305,7 @@ where } /** - * Check exif + * Do correction user * * @param user_id, action * @return boolean true if ok else false diff --git a/admin/include/functions_upgrade.php b/admin/include/functions_upgrade.php index fd9863339..5aa8928a0 100644 --- a/admin/include/functions_upgrade.php +++ b/admin/include/functions_upgrade.php @@ -43,39 +43,40 @@ if you want to upgrade'; // concerning upgrade, we use the default tables function prepare_conf_upgrade() { - global $conf, $prefixeTable; + global $prefixeTable; - $conf['tables']['categories_table'] = $prefixeTable.'categories'; - $conf['tables']['comments_table'] = $prefixeTable.'comments'; - $conf['tables']['config_table'] = $prefixeTable.'config'; - $conf['tables']['favorites_table'] = $prefixeTable.'favorites'; - $conf['tables']['group_access_table'] = $prefixeTable.'group_access'; - $conf['tables']['groups_table'] = $prefixeTable.'groups'; - $conf['tables']['history_table'] = $prefixeTable.'history'; - $conf['tables']['history_summary_table'] = $prefixeTable.'history_summary'; - $conf['tables']['image_category_table'] = $prefixeTable.'image_category'; - $conf['tables']['images_table'] = $prefixeTable.'images'; - $conf['tables']['sessions_table'] = $prefixeTable.'sessions'; - $conf['tables']['sites_table'] = $prefixeTable.'sites'; - $conf['tables']['user_access_table'] = $prefixeTable.'user_access'; - $conf['tables']['user_group_table'] = $prefixeTable.'user_group'; - $conf['tables']['users_table'] = $prefixeTable.'users'; - $conf['tables']['user_infos_table'] = $prefixeTable.'user_infos'; - $conf['tables']['user_feed_table'] = $prefixeTable.'user_feed'; - $conf['tables']['waiting_table'] = $prefixeTable.'waiting'; - $conf['tables']['image_metadata_table'] = $prefixeTable.'image_metadata'; - $conf['tables']['rate_table'] = $prefixeTable.'rate'; - $conf['tables']['user_cache_table'] = $prefixeTable.'user_cache'; - $conf['tables']['user_cache_categories_table'] = $prefixeTable.'user_cache_categories'; - $conf['tables']['caddie_table'] = $prefixeTable.'caddie'; - $conf['tables']['upgrade_table'] = $prefixeTable.'upgrade'; - $conf['tables']['search_table'] = $prefixeTable.'search'; - $conf['tables']['user_mail_notification_table'] = $prefixeTable.'user_mail_notification'; - $conf['tables']['tags_table'] = $prefixeTable.'tags'; - $conf['tables']['image_tag_table'] = $prefixeTable.'image_tag'; - $conf['tables']['plugins_table'] = $prefixeTable.'plugins'; - $conf['tables']['web_services_access_table'] = $prefixeTable.'ws_access'; - $conf['tables']['old_permalinks_table'] = $prefixeTable.'old_permalinks'; + // $conf is not used for users tables + // define cannot be re-defined + define('CATEGORIES_TABLE', $prefixeTable.'categories'); + define('COMMENTS_TABLE', $prefixeTable.'comments'); + define('CONFIG_TABLE', $prefixeTable.'config'); + define('FAVORITES_TABLE', $prefixeTable.'favorites'); + define('GROUP_ACCESS_TABLE', $prefixeTable.'group_access'); + define('GROUPS_TABLE', $prefixeTable.'groups'); + define('HISTORY_TABLE', $prefixeTable.'history'); + define('HISTORY_SUMMARY_TABLE', $prefixeTable.'history_summary'); + define('IMAGE_CATEGORY_TABLE', $prefixeTable.'image_category'); + define('IMAGES_TABLE', $prefixeTable.'images'); + 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('USER_INFOS_TABLE', $prefixeTable.'user_infos'); + define('USER_FEED_TABLE', $prefixeTable.'user_feed'); + define('WAITING_TABLE', $prefixeTable.'waiting'); + define('RATE_TABLE', $prefixeTable.'rate'); + define('USER_CACHE_TABLE', $prefixeTable.'user_cache'); + define('USER_CACHE_CATEGORIES_TABLE', $prefixeTable.'user_cache_categories'); + define('CADDIE_TABLE', $prefixeTable.'caddie'); + define('UPGRADE_TABLE', $prefixeTable.'upgrade'); + define('SEARCH_TABLE', $prefixeTable.'search'); + define('USER_MAIL_NOTIFICATION_TABLE', $prefixeTable.'user_mail_notification'); + define('TAGS_TABLE', $prefixeTable.'tags'); + define('IMAGE_TAG_TABLE', $prefixeTable.'image_tag'); + define('PLUGINS_TABLE', $prefixeTable.'plugins'); + define('WEB_SERVICES_ACCESS_TABLE', $prefixeTable.'ws_access'); + define('OLD_PERMALINKS_TABLE', $prefixeTable.'old_permalinks'); } // Create empty local files to avoid log errors -- cgit v1.2.3