summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2013-06-09 02:51:19 +0200
committerAndreas Gohr <andi@splitbrain.org>2013-06-16 20:10:21 +0200
commit8a09fa8d14a9f863aa2061b944447e30d63f74eb (patch)
treeb7a5306e75637fd4c7f4b23e2e0c2c65a7818387
parent4c14045cf5c8aebc122dc58a302b8a54e09858b0 (diff)
downloadrpg-8a09fa8d14a9f863aa2061b944447e30d63f74eb.tar.gz
rpg-8a09fa8d14a9f863aa2061b944447e30d63f74eb.tar.bz2
fixed syntax fuckup
-rw-r--r--inc/auth.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth.php b/inc/auth.php
index 8a7789b6c..64d1fe5d4 100644
--- a/inc/auth.php
+++ b/inc/auth.php
@@ -690,8 +690,8 @@ function auth_nameencode($name, $skip_group = false) {
*/
function auth_pwgen($foruser='') {
$data = array(
- 'password' = '',
- 'foruser' = $foruser
+ 'password' => '',
+ 'foruser' => $foruser
);
$evt = new Doku_Event('AUTH_PASSWORD_GENERATE', $data);