diff options
author | nikrou <nikrou@piwigo.org> | 2010-03-21 22:51:36 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-03-21 22:51:36 +0000 |
commit | 4773d7a35052df4683b0445c08feae609764bfb0 (patch) | |
tree | 98a5e8345ad4698acd71b55040fd99e64f388fd2 /include/common.inc.php | |
parent | 4158d3296072973d094cd295cc18f0035b5d7000 (diff) |
Feature 1255 :
only one function
use exceptions to deal with differents possible errors
git-svn-id: http://piwigo.org/svn/trunk@5236 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/common.inc.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/common.inc.php b/include/common.inc.php index 7ef43c281..0da96c7c6 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -104,9 +104,15 @@ include(PHPWG_ROOT_PATH . 'include/functions.inc.php'); include( PHPWG_ROOT_PATH .'include/template.class.php'); // 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(); |