mirror of
https://gitee.com/technical-laohu/mpay.git
synced 2025-10-22 02:13:44 +08:00
修复获取器空键名报错
This commit is contained in:
@@ -37,7 +37,7 @@ class PayAccount extends BaseModel
|
||||
foreach ($payplugin_config as $config) {
|
||||
$option[$config['platform']] = $config['name'];
|
||||
}
|
||||
return $option[$value];
|
||||
return isset($option[$value]) ? $option[$value] : '[已卸载,请停用]';
|
||||
}
|
||||
public function getPatternAttr($value)
|
||||
{
|
||||
|
Reference in New Issue
Block a user