#748 | $flags = isset($post['flag']) ? (array) $post['flag'] : []; |
#749 | $author = isset($post['author']) ? trim($post['author']) : ''; |
#750 | $alias = isset($post['alias']) ? trim($post['alias']) : ''; |
#751 | $auto_pic = isset($this->cfg['auto_pic']) ? (int) $this->cfg['auto_pic'] : 0; //自动提取缩略图 |
#752 | if ($alias && preg_match("/^\d+_\d+$/u", $alias)) { |
#753 | // 数字_数字 会和没有别名的 别名型URL冲突,导致404页面 |
#754 | return ['err' => 1, 'msg' => lang('alias_error_number_and_number')]; |
#755 | } |
#756 | |
#757 |