diff options
Diffstat (limited to 'includes/extauth')
-rw-r--r-- | includes/extauth/vB.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/extauth/vB.php b/includes/extauth/vB.php index 1b015bae77d8..860048f3fde4 100644 --- a/includes/extauth/vB.php +++ b/includes/extauth/vB.php @@ -61,7 +61,7 @@ class ExternalUser_vB extends ExternalUser { } else { $prefix = $wgExternalAuthConf['cookieprefix']; } - if ( !$wgRequest->getCookie( 'sessionhash', $prefix ) ) { + if ( $wgRequest->getCookie( 'sessionhash', $prefix ) === null ) { return false; } |