Skip to content
This repository was archived by the owner on Jan 13, 2022. It is now read-only.

Commit 9530e55

Browse files
committed
Fix previous commit with strict check
1 parent f93c139 commit 9530e55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Facebook/FacebookRedirectLoginHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function getLoginUrl($scope = array(), $version = null, $displayAsPopup =
103103
'scope' => implode(',', $scope)
104104
);
105105

106-
if (in_array($authType, array(true, 'reauthenticate', 'https'))) {
106+
if (in_array($authType, array(true, 'reauthenticate', 'https'), true)) {
107107
$params['auth_type'] = $reauthenticate === true ? 'reauthenticate' : $reauthenticate;
108108
}
109109

0 commit comments

Comments
 (0)