Hello
I want, that everyone can edit postings from User "wiki". How can I do this? (Or is there already a mod for this?)
Thanks!
Bruno
Solution: In
class_postbit.php enable the Button "Edit" by
adding
Code:
can_moderate($this->thread['forumid'], 'caneditposts') OR
($this->post['userid'] == 68) OR
and give rights in
editpost.php by
adding
Code:
if ($vbulletin->userinfo['userid'] != $postinfo['userid'] AND $postinfo['userid'] != 68)
68 is the hardcodet ID of the Wiki-User, better via options of course.