diff --git a/e107_plugins/forum/forum_post.php b/e107_plugins/forum/forum_post.php index cf771df97..8d47755d3 100644 --- a/e107_plugins/forum/forum_post.php +++ b/e107_plugins/forum/forum_post.php @@ -990,7 +990,8 @@ class forum_post_handler $postVals['post_edit_user'] = USERID; $postVals['post_entry'] = $_POST['post']; - $threadVals['thread_name'] = $_POST['subject']; + $threadVals['thread_name'] = $_POST['subject']; + $threadVals['thread_sticky'] = (MODERATOR ? (int)$_POST['threadtype'] : 0); $this->forumObj->threadUpdate($this->data['post_thread'], $threadVals); $this->forumObj->postUpdate($this->data['post_id'], $postVals);