X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Fdb_prefs.php;h=7b59c7215b0630c4b36ee92fbe82239af66bc51e;hb=bf6140e31005ad4d99344ecb6ad473ab65855d59;hp=b63293ca31abaeb9b0b4f1069846f13273d1d50f;hpb=4b4abf93a9624311afef0c385023724ee46a2b60;p=squirrelmail.git diff --git a/functions/db_prefs.php b/functions/db_prefs.php index b63293ca..7b59c721 100644 --- a/functions/db_prefs.php +++ b/functions/db_prefs.php @@ -21,7 +21,7 @@ * Configuration of databasename, username and password is done * by using conf.pl or the administrator plugin * - * @copyright © 1999-2005 The SquirrelMail Project Team + * @copyright © 1999-2007 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail @@ -39,17 +39,11 @@ define('SMDB_MYSQL', 1); /** PostgreSQL */ define('SMDB_PGSQL', 2); -require_once(SM_PATH . 'config/config.php'); -if (!include_once('DB.php')) { - // same error also in abook_database.php - require_once(SM_PATH . 'functions/display_messages.php'); - $error = _("Could not include PEAR database functions required for the database backend.") . "
\n"; - $error .= sprintf(_("Is PEAR installed, and is the include path set correctly to find %s?"), - 'DB.php') . "
\n"; - $error .= _("Please contact your system administrator and report this error."); - error_box($error, $color); - exit; -} +/** + * don't display errors (no code execution in functions/*.php). + * will handle error in dbPrefs class. + */ +@include_once('DB.php'); global $prefs_are_cached, $prefs_cache; @@ -168,6 +162,16 @@ class dbPrefs { global $prefs_user_field, $prefs_key_field, $prefs_val_field; global $prefs_user_size, $prefs_key_size, $prefs_val_size; + /* test if Pear DB class is available and freak out if it is not */ + if (! class_exists('DB')) { + // same error also in abook_database.php + $this->error = _("Could not include PEAR database functions required for the database backend.") . "
\n"; + $this->error .= sprintf(_("Is PEAR installed, and is the include path set correctly to find %s?"), + 'DB.php') . "
\n"; + $this->error .= _("Please contact your system administrator and report this error."); + return false; + } + if(isset($this->dbh)) { return true; } @@ -212,7 +216,7 @@ class dbPrefs { /** * Function used to handle database connection errors - * @param object PEAR Error object + * @param object PEAR Error object */ function failQuery($res = NULL) { if($res == NULL) { @@ -250,7 +254,7 @@ class dbPrefs { /** * Delete user's prefs setting - * @param string $user user name + * @param string $user user name * @param string $key preference name * @return boolean */ @@ -298,8 +302,8 @@ class dbPrefs { ." See doc/db-backend.txt or contact your system administrator."; /** - * Debugging function. Can be used to log all issues that trigger - * oversized field errors. Function should be enabled in all three + * Debugging function. Can be used to log all issues that trigger + * oversized field errors. Function should be enabled in all three * strlen checks. See http://www.php.net/error-log */ // error_log($user.'|'.$key.'|'.$value."\n",3,'/tmp/oversized_log'); @@ -539,4 +543,3 @@ function getSig($data_dir, $username, $number) { } // vim: et ts=4 -?> \ No newline at end of file