diff options
author | Andreas Gohr <andi@splitbrain.org> | 2009-11-15 13:39:54 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2009-11-15 13:39:54 +0100 |
commit | 4646b5843386d140d6c6796a19081a59e02c0b17 (patch) | |
tree | ec6175b41f55407d0a5f5e5170e07c98fbdf08e7 | |
parent | 6f6b025644f75648d4358b75383bb8980cb06af9 (diff) | |
download | rpg-4646b5843386d140d6c6796a19081a59e02c0b17.tar.gz rpg-4646b5843386d140d6c6796a19081a59e02c0b17.tar.bz2 |
fixed copypasta in plain::cleanGroup
Ignore-this: 7a9e8fe59a2d054a6b706db773fd9e1d
darcs-hash:20091115123954-7ad00-4d22dbec1a425bcc5370b62fc6d4586beec04161.gz
-rw-r--r-- | inc/auth/plain.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/auth/plain.class.php b/inc/auth/plain.class.php index 3983a7d44..96649e3c4 100644 --- a/inc/auth/plain.class.php +++ b/inc/auth/plain.class.php @@ -261,7 +261,7 @@ class auth_plain extends auth_basic { /** * Only valid pageid's (no namespaces) for groupnames */ - function cleanGroup($user){ + function cleanGroup($group){ global $conf; return cleanID(str_replace(':',$conf['sepchar'],$group)); } |