MrNase
01-16-2009, 10:00 PM
3.8 introduces Private Message Quick Reply.
Some users, including me, are not happy about that the original message is automatically quoted.
Unfortunately this one requires one small code modification, there is no hook that could be used to do this with a plugin. :(
Note: This is different from this plugin (https://vborg.vbsupport.ru/showthread.php?t=200608) as my modification deals with the Quick Reply.
All you have to do is:
Open private.php and go to line 1634:
Find:
$editorid = construct_edit_toolbar(
$pm['message'],
false,
'privatemessage',
$vbulletin->options['privallowsmilies'],
true,
false,
'qr_pm'
);
REPLACE it with:
$editorid = construct_edit_toolbar(
'',
false,
'privatemessage',
$vbulletin->options['privallowsmilies'],
true,
false,
'qr_pm'
);
Done! :)
Some users, including me, are not happy about that the original message is automatically quoted.
Unfortunately this one requires one small code modification, there is no hook that could be used to do this with a plugin. :(
Note: This is different from this plugin (https://vborg.vbsupport.ru/showthread.php?t=200608) as my modification deals with the Quick Reply.
All you have to do is:
Open private.php and go to line 1634:
Find:
$editorid = construct_edit_toolbar(
$pm['message'],
false,
'privatemessage',
$vbulletin->options['privallowsmilies'],
true,
false,
'qr_pm'
);
REPLACE it with:
$editorid = construct_edit_toolbar(
'',
false,
'privatemessage',
$vbulletin->options['privallowsmilies'],
true,
false,
'qr_pm'
);
Done! :)