自定义文章关键词字段 发布的时候无法保存 编辑的时候新增的自定义关键词字段显示 当前发布者的id,如果在编辑的时候再次输入关键词可以保存,
修改的文件为:
\app\publish\ajax.php
\app\publish\main.php
\models\article.php
\models\publish.php
\views\default\publish\article.tpl.htm
修改方式为,在原来基础上加上keywords
(如)
public function publish_article($title, $message, $keywords, $uid, $topics = null, $category_id = null, $attach_access_key = null, $create_topic = true)
{
if ($article_id = $this->insert('article', array(
'uid' => intval($uid),
'title' => htmlspecialchars($title),
'message' => htmlspecialchars($message),
'keywords' => htmlspecialchars($keywords),
'category_id' => intval($category_id),
'add_time' => time()
)))
新发布的时候输入关键词然后发布
然后点击刚发布的文章返回如下结果(其中128为当前发布者的账号id)
如果再次编辑的时候输入关键词就可以保持成功
这是哪里没有修改吗??求指导
阅读全文
收起全文