diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-01-21 16:27:40 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-01-21 16:27:40 +0100 |
commit | dbc31b0931cdab7a717606d1861b4c8ebf5ad5c0 (patch) | |
tree | 6b9ebe850229f11747d2a355477c96e0c590ee30 | |
parent | 0c6b58a847e74cc5f51616e9a6f71935806dece0 (diff) | |
download | rpg-dbc31b0931cdab7a717606d1861b4c8ebf5ad5c0.tar.gz rpg-dbc31b0931cdab7a717606d1861b4c8ebf5ad5c0.tar.bz2 |
spellfix for mysql auth backend
darcs-hash:20060121152740-7ad00-80eecea2be4754494fef5f11cc91d7f3e4acf1fb.gz
-rw-r--r-- | inc/auth/mysql.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/auth/mysql.class.php b/inc/auth/mysql.class.php index 6d79c5430..8fdb16122 100644 --- a/inc/auth/mysql.class.php +++ b/inc/auth/mysql.class.php @@ -294,7 +294,7 @@ class auth_mysql extends auth_basic { if($this->openDB()) { $this->lockTables("WRITE"); $rc = addUserToGroup($user, $group); - $this->unlochTables(); + $this->unlockTables(); $this->closeDB(); } return $rc; |