自己解决了,官方,你写漏代码啦。
情况是这样的:
我发布一个投票的帖子,默认是填3个选项的,但是我只上传了2个图片,有一个忘记上传图片了、、、
发现少了个图片,当然是去编辑这个帖子,但是第3个选项怎么上传都无法显示图片、、、
解决方法:
打开 source\class\extend\extend_thread_poll.php 找到
if($this->group['alloweditpoll']) {
C::t('forum_polloption')->update_safe_tid($_GET['polloptionid'][$key], $this->thread['tid'], $pollarray['displayorder'][$key], $value);
}
改成
if($this->group['alloweditpoll']) {
C::t('forum_polloption')->update_safe_tid($_GET['polloptionid'][$key], $this->thread['tid'], $pollarray['displayorder'][$key], $value);
if($this->pollarray['pollimage'][$key]) {
C::t('forum_polloption_image')->update($this->pollarray['pollimage'][$key], array('poid' => $_GET['polloptionid'][$key], 'tid' => $this->thread['tid'], 'pid' => $this->post['pid']));
$this->pollarray['isimage'] = 1;
}
}
红色部分是补上的代码。
|