Update hybridauth.lnk.php

This commit is contained in:
Namhyeon Go 2018-09-27 02:04:38 +09:00 committed by GitHub
parent c329b613f9
commit be44627daa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,11 +46,13 @@ if(!function_exists("check_hybridauth")) {
function check_hybridauth() { function check_hybridauth() {
$flag = false; $flag = false;
$requests = get_requests(); $requests = get_requests();
foreach($requests['_ALL'] as $k=>$v) { if(loadHelper("string.utl")) {
if(startsWith($k, "hauth.")) { foreach($requests['_ALL'] as $k=>$v) {
$flag = true; if(startsWith($k, "hauth.")) {
break; $flag = true;
break;
}
} }
} }