Fix server_type position

1.10.x
Julio Montoya 11 years ago
parent b5bd595b8a
commit e76da07245
  1. 18
      main/inc/global.inc.php

@ -67,15 +67,6 @@ if ($passwordEncryption == 'bcrypt') {
// Check the PHP version
api_check_php_version($includePath.'/');
// Error reporting settings.
if (api_get_setting('server_type') == 'test') {
ini_set('display_errors', '1');
ini_set('log_errors', '1');
error_reporting(-1);
} else {
error_reporting(E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR);
}
// Specification for usernames:
// 1. ASCII-letters, digits, "." (dot), "_" (underscore) are acceptable, 40 characters maximum length.
// 2. Empty username is formally valid, but it is reserved for the anonymous user.
@ -278,6 +269,15 @@ foreach ($result as & $row) {
$_plugins[$key][] = $row['selected_value'];
}
// Error reporting settings.
if (api_get_setting('server_type') == 'test') {
ini_set('display_errors', '1');
ini_set('log_errors', '1');
error_reporting(-1);
} else {
error_reporting(E_COMPILE_ERROR | E_ERROR | E_CORE_ERROR);
}
// Load allowed tag definitions for kses and/or HTMLPurifier.
require_once $libraryPath.'formvalidator/Rule/allowed_tags.inc.php';

Loading…
Cancel
Save