发布v2.6.8版本

This commit is contained in:
雨中磐石
2025-03-31 20:54:32 +08:00
parent 0701e2a8b4
commit d41bd27082
122 changed files with 9827 additions and 9132 deletions

View File

@@ -33,7 +33,7 @@ class wordClassAction extends apiAction
$cqid = $this->post('cqid');
$typeid = (int)$this->post('typeid','0');
$name = $this->post('name');
$name = $this->rock->xssrepstr($this->post('name'));
$arr = m('word')->createfolder($name, $cqid, $typeid);
$this->showreturn($arr);
@@ -43,7 +43,7 @@ class wordClassAction extends apiAction
public function renameAction()
{
$id = (int)$this->post('id');
$name = $this->getvals('name');
$name = $this->rock->xssrepstr($this->getvals('name'));
$type = $this->post('type');
m('word')->update("`name`='$name'", $id);
$this->showreturn('');