diff options
Diffstat (limited to 'upgrade_feed.php')
-rw-r--r-- | upgrade_feed.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/upgrade_feed.php b/upgrade_feed.php index 52f0cfb9f..6b991418d 100644 --- a/upgrade_feed.php +++ b/upgrade_feed.php @@ -54,10 +54,15 @@ define('UPGRADES_PATH', PHPWG_ROOT_PATH.'install/db'); // +-----------------------------------------------------------------------+ // | Database connection | // +-----------------------------------------------------------------------+ - -$pwg_db_link = pwg_db_connect($conf['db_host'], $conf['db_user'], - $conf['db_password'], $conf['db_base']); -pwg_select_db($conf['db_base'], $pwg_db_link); +try +{ + $pwg_db_link = pwg_db_connect($conf['db_host'], $conf['db_user'], + $conf['db_password'], $conf['db_base']); +} +catch (Exception $e) +{ + my_error(l10n($e->getMessage(), true); +} pwg_db_check_charset(); |