Editing First Post as Threadstarter

  • Thread starter Thread starter ragtek
  • Start date Start date
R

ragtek

Guest
1. Will the Thread-author finally be able to edit the title in 1.1?
2. Will the Thread-author also be able to change/add the Prefix? (For example to add a "solved" prefix??)

In the video we've only seen, that the prefix can be added via moderation "edit link" (minute 3:11) in the forum, or via edit link in the thread(which is also only visible for mods) which is only available if users have permission to edit any thread (in xf < 1.1)

PHP:
    public function canEditThread(array $thread, array $forum, &$errorPhraseKey = '', array $nodePermissions = null, array $viewingUser = null)
    {
        $this->standardizeViewingUserReferenceForNode($thread['node_id'], $viewingUser, $nodePermissions);
        return ($viewingUser['user_id'] && XenForo_Permission::hasContentPermission($nodePermissions, 'manageAnyThread'));
    }
 
Top Bottom