Try this :
first open this file
find
Code:
// Soft Deleted Thread
add above
PHP Code:
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ADD BY MGHOOL - A
$Tu = $vbulletin->db->query_first_slave("SELECT usergroupid FROM " . TABLE_PREFIX . "user WHERE userid = " . $thread['postuserid'] . " LIMIT 1");
$To = $vbulletin->usergroupcache["" . $Tu['usergroupid'] . ""]['opentag'];
$Tc = $vbulletin->usergroupcache["" . $Tu['usergroupid'] . ""]['closetag'];
$thread['threadtitle'] = $To . $thread['threadtitle'] . $Tc;
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ADD BY MGHOOL - V
this is for all groups that you have
if you want to do this for Certain groups
add this code
PHP Code:
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ADD BY MGHOOL - A $Tx = '[COLOR="Red"]6[/COLOR]'; $Tu = $vbulletin->db->query_first_slave("SELECT usergroupid FROM " . TABLE_PREFIX . "user WHERE userid = " . $thread['postuserid'] . " LIMIT 1"); if (@in_array($Tu['usergroupid'], @preg_split('#\s*,\s*#s', $Tx, -1, @PREG_SPLIT_NO_EMPTY))) { $To = $vbulletin->usergroupcache["" . $Tu['usergroupid'] . ""]['opentag']; $Tc = $vbulletin->usergroupcache["" . $Tu['usergroupid'] . ""]['closetag']; $thread['threadtitle'] = $To . $thread['threadtitle'] . $Tc; } // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ADD BY MGHOOL - V
Notice: you need to change number (6) to the ID number of the group you want .. use (,) if you want to do it on Different groups
Save and Upload the file
-----------------
Then
open this file
Code:
clientscript/vbulletin_ajax_threadslist.js
find
Code:
this.inputobj.style.width = Math.max(this.linkobj.offsetWidth, 250) + 'px';
above that add this code
PHP Code:
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ADD BY MGHOOL - A this.inputobj.maxLength = this.inputobj.maxLength + 85; // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ADD BY MGHOOL - V
in the same file
find
Code:
this.inputobj.title = this.inputobj.value;
add above
PHP Code:
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ADD BY MGHOOL - A this.inputobj.value = this.inputobj.value.replace(/\<(.*?)\>/g, ''); // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ADD BY MGHOOL - V
Save the file and Upload it
That's will be all