diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-06-09 02:51:19 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-06-09 02:51:19 +0200 |
commit | d628dcf33c131b3ede5c78b4550c2ba23124f432 (patch) | |
tree | 4b67f1cdf8800cb93397ab46ec3ebda0a9302ab8 | |
parent | 8a285f7fa7f09ae969e12cf4b7bda0f5123bb0fb (diff) | |
download | rpg-d628dcf33c131b3ede5c78b4550c2ba23124f432.tar.gz rpg-d628dcf33c131b3ede5c78b4550c2ba23124f432.tar.bz2 |
fixed syntax fuckup
-rw-r--r-- | inc/auth.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth.php b/inc/auth.php index 82a6b46cd..db6245e20 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); |