diff options
Diffstat (limited to 'Auth')
-rw-r--r-- | Auth/OpenID/PAPE.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/PAPE.php b/Auth/OpenID/PAPE.php index b9f68c8..62cba8a 100644 --- a/Auth/OpenID/PAPE.php +++ b/Auth/OpenID/PAPE.php @@ -237,7 +237,7 @@ class Auth_OpenID_PAPE_Response extends Auth_OpenID_Extension { function parseExtensionArgs($args, $strict=false) { $policies_str = Auth_OpenID::arrayGet($args, 'auth_policies'); - if ($policies_str and $policies_str != "none") { + if ($policies_str && $policies_str != "none") { $this->auth_policies = explode(" ", $policies_str); } |