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() {
$flag = false;
$requests = get_requests();
foreach($requests['_ALL'] as $k=>$v) {
if(startsWith($k, "hauth.")) {
$flag = true;
break;
if(loadHelper("string.utl")) {
foreach($requests['_ALL'] as $k=>$v) {
if(startsWith($k, "hauth.")) {
$flag = true;
break;
}
}
}