Quote:
Originally Posted by Psionic Vision
Yes, it's possible, and one day it shall be done.
|
Thanks, i did it myselft
in vbulletin_textedit.js
Find:
Code:
this.Insert_Quote = function(username)
and replace with:
Code:
this.Insert_Quote = function(username, postid)
Find
Code:
var new_text = '[QUOTE="' + username + '"]' + this.captured_selection + '[/QUOTE]';
replace with:
Code:
var new_text = '[QUOTE="' + username + '\;' + postid + '"]' + this.captured_selection + '[/QUOTE]';
in Postbit and Postbit_Legacy
Find:
Code:
Insert_Quote('$post[username]')
replace with:
Code:
Insert_Quote('$post[username]', '$post[postid]')