diff options
author | Johannes Buchner <buchner.johannes@gmx.at> | 2005-07-29 18:13:31 +0200 |
---|---|---|
committer | Johannes Buchner <buchner.johannes@gmx.at> | 2005-07-29 18:13:31 +0200 |
commit | 424c3c4f29261765eec496ad226297815d75f4c1 (patch) | |
tree | 7cc226161545d6ec45c40e861e7550092617b7a4 | |
parent | e7cb32dcb57d3ae03544db66367d6aaa02f7ddf8 (diff) | |
download | rpg-424c3c4f29261765eec496ad226297815d75f4c1.tar.gz rpg-424c3c4f29261765eec496ad226297815d75f4c1.tar.bz2 |
typo fix for actions.inc #480
darcs-hash:20050729161331-83f7f-4c1853082e93e41ab749ead17e770adc671bb0e4.gz
-rw-r--r-- | inc/actions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/actions.php b/inc/actions.php index 75f4b3717..a4e087f3a 100644 --- a/inc/actions.php +++ b/inc/actions.php @@ -199,7 +199,7 @@ function act_auth($act){ //handle logout if($act=='logout'){ $lockedby = checklock($ID); //page still locked? - if($lockedby == $_SERVER['REMOTER_USER']) + if($lockedby == $_SERVER['REMOTE_USER']) unlock($ID); //try to unlock auth_logoff(); |