发布v2.6.9版本

This commit is contained in:
雨中磐石
2025-05-27 14:51:24 +08:00
parent 16829278ae
commit d0c604e040
31 changed files with 661 additions and 242 deletions

View File

@@ -164,4 +164,16 @@ class publicClassAction extends ActionNot{
$this->smartydata['id'] = $id;
$this->smartydata['otype'] = $otype;
}
/**
* 地址跳转
*/
public function gotoAction()
{
$url = $this->get('url');
if(!$url)return 'urlerror';
$url = urldecode($url);
//return $url;
$this->rock->location($url);
}
}