[d]
[color=ff0000]
if (!$config) { // 如果配置出错,我们将使用xoops
$xoops_auth_method = 'xoops';
} else {
$xoops_auth_method = $config[0]->getVar('conf_value');
}
[/color][/d]
if (!$config) { // 如果配置出错,我们将使用xoops
$xoops_auth_method = 'xoops';
} else {
$xoops_auth_method = $config[0]->getConfValueForOutput();
if(!is_readable( XOOPS_ROOT_PATH.'/class/auth/auth_' . $xoops_auth_method . )){
$xoops_auth_method = 'xoops';
}
}
|