* [refac bug #53548] Add other chars.

This commit is contained in:
wangyidong
2024-08-06 09:05:37 +08:00
committed by 孙广明
parent 4e67e20393
commit ddb959ccaf
+2 -2
View File
@@ -1124,7 +1124,7 @@ class baseControl
{
if(!empty($data['message'])) echo js::alert($data['message']);
$locate = $data['locate'] ?? $_SERVER['HTTP_REFERER'] ?? '';
if($locate && strpos($locate, '(') !== false) $locate = $this->config->webRoot;
if($locate && preg_match('/\(|\'|\"|\[/', $locate)) $locate = $this->config->webRoot;
if(!empty($locate)) return helper::end(js::locate($locate));
return helper::end($data['message'] ?? 'success');
}
@@ -1137,7 +1137,7 @@ class baseControl
{
echo js::alert($data['message']);
$locate = $data['locate'] ?? $_SERVER['HTTP_REFERER'] ?? '';
if($locate && strpos($locate, '(') !== false) $locate = $this->config->webRoot;
if($locate && preg_match('/\(|\'|\"|\[/', $locate)) $locate = $this->config->webRoot;
if (!empty($locate)) return helper::end(js::locate($locate));
return helper::end($data['message'] ?? 'fail');
}