2010-10-05 Sancho Lerena <slerena@artica.es>

* include/config_process.php: Remove config['debug'] from prev.
    commit.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3345 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
slerena 2010-10-05 18:12:02 +00:00
parent 8f3acf6420
commit db9f5da826
2 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,7 @@
2010-10-05 Sancho Lerena <slerena@artica.es>
* include/config_process.php: Remove config['debug'] from prev. commit.
* include/config_process.php: Set to 0 $config['debug'] by default to avoid
debug messages on normal operation mode, developers should setup debug
mode in their config.php file.

View File

@ -59,9 +59,6 @@ else {
$config['start_time'] = microtime (true);
// Only set this to 1 on active development, this will trace all SQL errors.
$config['debug'] = 0;
// Non-persistent connection: This will help to avoid mysql errors like "has gone away" or locking problems
// If you want persistent connections change it to mysql_pconnect().
$config['dbconnection'] = mysql_connect ($config["dbhost"], $config["dbuser"], $config["dbpass"]);