diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-02-08 21:07:33 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-02-08 21:07:33 +0100 |
commit | 8fdf940662349e4e96822926bf1e1668f654d112 (patch) | |
tree | 7ed64e9522ce72a97fd41253517f9468e5ef70e1 | |
parent | b5c14b35a142f0d90fee541d471fc5670e4bbba9 (diff) | |
download | rpg-8fdf940662349e4e96822926bf1e1668f654d112.tar.gz rpg-8fdf940662349e4e96822926bf1e1668f654d112.tar.bz2 |
removed security token requirement for login
This was discussed a while ago on the mailing list. We want to work cross-site
logins keep working.
darcs-hash:20080208200733-7ad00-a1f6164d65001586ec23311c07fe5c277bd62a82.gz
-rw-r--r-- | inc/actions.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/inc/actions.php b/inc/actions.php index 9e5ec5041..83500475b 100644 --- a/inc/actions.php +++ b/inc/actions.php @@ -40,11 +40,7 @@ function act_dispatch(){ //login stuff if(in_array($ACT,array('login','logout'))){ - if(checkSecurityToken()){ $ACT = act_auth($ACT); - }else{ - $ACT = 'show'; - } } //check if user is asking to (un)subscribe a page |