summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Burschka2014-01-23 02:59:37 +0100
committerChristoph Burschka2014-01-23 02:59:37 +0100
commit0b9ce95a3c425eb4c073328c2a18f428aeefbe37 (patch)
treec76e68e0e8ed32bcf847e1a154d044525944e55d
parentClarified readme (diff)
downloadejabberd-auth-php-0b9ce95a3c425eb4c073328c2a18f428aeefbe37.tar.gz
config.php syntax fixes
Thanks @sylae
-rw-r--r--config.sample.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.sample.php b/config.sample.php
index 9c1746a..6d02fa2 100644
--- a/config.sample.php
+++ b/config.sample.php
@@ -17,11 +17,11 @@ $config = [
// Remove this section if you are not using session authentication.
'session' => [
- 'mysql' [
+ 'mysql' => [
'dsn' => 'mysql:host=localhost;dbname=DATABASE;charset=utf8',
'username' => 'USER',
'password' => 'PASSWORD',
- 'table' => 'TABLE',
+ 'tablename' => 'TABLE',
],
'timeout' => 60,
],