ok....
open
functions_forumdisplay.php:
find:
PHP Code:
can_moderate($thread['forumid'], 'caneditthreads')
replace with:
PHP Code:
is_member_of($vbulletin->userinfo, 6)
change "6" to the usergroups that you want to allowed to edit the title of the tread....
if you what a few groups...just separated the usergroupsID with a comma.. like:
PHP Code:
is_member_of($vbulletin->userinfo, 6, 4, 9, 56)
e-njoy....