diff options
Diffstat (limited to 'application/Config.php')
-rwxr-xr-x | application/Config.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/application/Config.php b/application/Config.php index 0b01b524..ec799d7f 100755 --- a/application/Config.php +++ b/application/Config.php | |||
@@ -19,10 +19,10 @@ | |||
19 | function writeConfig($config, $isLoggedIn) | 19 | function writeConfig($config, $isLoggedIn) |
20 | { | 20 | { |
21 | // These fields are required in configuration. | 21 | // These fields are required in configuration. |
22 | $MANDATORY_FIELDS = [ | 22 | $MANDATORY_FIELDS = array( |
23 | 'login', 'hash', 'salt', 'timezone', 'title', 'titleLink', | 23 | 'login', 'hash', 'salt', 'timezone', 'title', 'titleLink', |
24 | 'redirector', 'disablesessionprotection', 'privateLinkByDefault' | 24 | 'redirector', 'disablesessionprotection', 'privateLinkByDefault' |
25 | ]; | 25 | ); |
26 | 26 | ||
27 | if (!isset($config['config']['CONFIG_FILE'])) { | 27 | if (!isset($config['config']['CONFIG_FILE'])) { |
28 | throw new MissingFieldConfigException('CONFIG_FILE'); | 28 | throw new MissingFieldConfigException('CONFIG_FILE'); |
@@ -126,4 +126,4 @@ class UnauthorizedConfigException extends Exception | |||
126 | { | 126 | { |
127 | $this->message = 'You are not authorized to alter config.'; | 127 | $this->message = 'You are not authorized to alter config.'; |
128 | } | 128 | } |
129 | } \ No newline at end of file | 129 | } |