diff options
author | Anika Henke <anika@selfthinker.org> | 2013-05-27 16:26:40 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-06-08 13:12:28 +0200 |
commit | ee8ab6d7ff4fa460355f41309bcb9ed2e1b41036 (patch) | |
tree | abec171e8c20f8c94230248bdfc782d210939b79 | |
parent | 742ea690db72894cbead8b4843a757bf6680fd98 (diff) | |
download | rpg-ee8ab6d7ff4fa460355f41309bcb9ed2e1b41036.tar.gz rpg-ee8ab6d7ff4fa460355f41309bcb9ed2e1b41036.tar.bz2 |
fixed broken default config options (FS#2789)
-rw-r--r-- | lib/plugins/authldap/conf/default.php | 2 | ||||
-rw-r--r-- | lib/plugins/authmysql/conf/default.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugins/authldap/conf/default.php b/lib/plugins/authldap/conf/default.php index d07f9c82e..d530d59c9 100644 --- a/lib/plugins/authldap/conf/default.php +++ b/lib/plugins/authldap/conf/default.php @@ -16,4 +16,4 @@ $conf['bindpw'] = ''; $conf['userscope'] = 'sub'; $conf['groupscope'] = 'sub'; $conf['groupkey'] = 'cn'; -$conf['debug'] = array('onoff');
\ No newline at end of file +$conf['debug'] = 0;
\ No newline at end of file diff --git a/lib/plugins/authmysql/conf/default.php b/lib/plugins/authmysql/conf/default.php index 647f3d96c..427bea273 100644 --- a/lib/plugins/authmysql/conf/default.php +++ b/lib/plugins/authmysql/conf/default.php @@ -7,7 +7,7 @@ $conf['password'] = ''; $conf['database'] = ''; $conf['debug'] = 0; $conf['forwardClearPass'] = 0; -$conf['TablesToLock'] = ''; +$conf['TablesToLock'] = array(); $conf['checkPass'] = ''; $conf['getUserInfo'] = ''; $conf['getGroups'] = ''; |