This works on 3.7 like a charm
just the vbulletin_textedit.js modification is different
i've modificied this for quote linkback integrate myself
Find:
Code:
this.allowbasicbbcode=((typeof allowbasicbbcode!="undefined"&&allowbasicbbcode)?true:false);
Add this after abow code:
Code:
if(this.editorid == 'vB_Editor_QR'){this.current_selection='';this.captured_selection='';this.Capture_Selection=function(){if(window.getSelection){this.current_selection=window.getSelection();}else if(document.getSelection){this.current_selection=document.getSelection();}else if(document.selection && document.selection.createRange){this.current_selection=document.selection.createRange().text;}if (is_opera){this.captured_selection=(this.current_selection != '' ? this.current_selection : this.captured_selection);}else{this.captured_selection=this.current_selection;}};this.Insert_Quote=function(username, postid){if (this.disabled || this.editorid != 'vB_Editor_QR' || this.captured_selection == ''){return false;}else{var new_text = '[quote="' + username + '\;' + postid + '"]' + this.captured_selection + '[/quote]';this.set_editor_contents(this.get_editor_contents() + (this.get_editor_contents().length > 0 ? (this.wysiwyg_mode ? '<br />' : '\r\n') : '') + new_text);this.captured_selection = '';return true;}}};
postbit/postbit_legacy template:
Find:
Code:
Insert_Quote('$post[username]')
Replace with:
Code:
Insert_Quote('$post[username]', '$post[postid]')
PS: Template modifications can handled by template hook locations