2013-10-01 Ramon Novoa <rnovoa@artica.es>
* index.php, include/config_process.php: Removed a redeclaration of develop_bypass and set it to 0 by default. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8838 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9bd9814ece
commit
afe07ff99f
|
@ -1,3 +1,9 @@
|
|||
2013-10-01 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* index.php,
|
||||
include/config_process.php: Removed a redeclaration of develop_bypass
|
||||
and set it to 0 by default.
|
||||
|
||||
2013-09-30 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/functions_config.php: Improve the db maintenance check
|
||||
|
|
|
@ -35,10 +35,8 @@ else {
|
|||
ini_set("date.timezone", $script_tz);
|
||||
}
|
||||
|
||||
global $develop_bypass;
|
||||
/* Help to debug problems. Override global PHP configuration */
|
||||
$develop_bypass = 0;
|
||||
|
||||
global $develop_bypass;
|
||||
if ($develop_bypass != 1) {
|
||||
// error_reporting(E_ALL);
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ if (function_exists ('mb_internal_encoding')) {
|
|||
|
||||
// Set to 1 to do not check for installer or config file (for development!).
|
||||
// Activate gives more error information, not useful for production sites
|
||||
$develop_bypass = 1;
|
||||
$develop_bypass = 0;
|
||||
|
||||
if ($develop_bypass != 1) {
|
||||
// If no config file, automatically try to install
|
||||
|
|
Loading…
Reference in New Issue