diff options
author | mistic100 <mistic@piwigo.org> | 2013-02-12 11:06:00 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2013-02-12 11:06:00 +0000 |
commit | e8bdcecfeb97a8f12d7c1de06f77067a4dd307e1 (patch) | |
tree | 81e149470c32b435d2c49ebd0774fe1a822a694a /upgrade_feed.php | |
parent | 758f29eb7d5372421b09e484cdbcd01d561b923c (diff) |
feature:65 pwg_db_connect doesn't return anything now
git-svn-id: http://piwigo.org/svn/trunk@20720 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | upgrade_feed.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/upgrade_feed.php b/upgrade_feed.php index 085237eac..87507c8d9 100644 --- a/upgrade_feed.php +++ b/upgrade_feed.php @@ -60,8 +60,8 @@ define('UPGRADES_PATH', PHPWG_ROOT_PATH.'install/db'); // +-----------------------------------------------------------------------+ try { - $pwg_db_link = pwg_db_connect($conf['db_host'], $conf['db_user'], - $conf['db_password'], $conf['db_base']); + pwg_db_connect($conf['db_host'], $conf['db_user'], + $conf['db_password'], $conf['db_base']); } catch (Exception $e) { |