Same issue on my forum too. Glad it's not just my boards

vBulletin 4.2.5 is end of life and will not be receiving any future development. Warning: vBulletin 4.2.5 is not compatible with PHP 7.2.0 or higher.
Welcome to the vBulletin support forums! In our community forums you can receive professional support and assistance with any issues you might have with your vBulletin Products.
Useful Links for Guests:
If you are having problems posting in the relevant areas for your software, please see this topic.
Index: [COLOR="#FFA500"]clientscript/vbulletin_quick_edit.js[/COLOR] =================================================================== --- clientscript/vbulletin_quick_edit.js (revision 55763) +++ clientscript/vbulletin_quick_edit.js (revision 55764) @@ -414,7 +414,7 @@ form.add_variable('quickeditnoajax', 1); } form.add_variable('postid', vB_QuickEditor.postid); - [COLOR="#FF0000"]form.add_variable('message', vB_Editor[vB_QuickEditor.editorid].get_editor_contents());[/COLOR] + [COLOR="#0000FF"]form.add_variable('message', vB_Editor[vB_QuickEditor.editorid].getRawData());[/COLOR] form.add_variable('reason', fetch_object(vB_QuickEditor.editorid + '_edit_reason').value); form.add_variable('posthash', vBulletin.attachinfo.posthash); form.add_variable('poststarttime', vBulletin.attachinfo.poststarttime);
Index: [COLOR="#FFA500"]clientscript/vbulletin_quick_edit_picturecomment.js[/COLOR] =================================================================== --- clientscript/vbulletin_quick_edit_picturecomment.js (revision 55763) +++ clientscript/vbulletin_quick_edit_picturecomment.js (revision 55764) @@ -143,7 +143,7 @@ form.add_variable(this.vars.objecttype, this.objectid); form.add_variable(this.vars.type, this.vars.xid); form.add_variable('attachmentid', this.vars.attachmentid); - [COLOR="#FF0000"]form.add_variable('message', vB_Editor[this.editorid].get_editor_contents());[/COLOR] + [COLOR="#0000FF"]form.add_variable('message', vB_Editor[this.editorid].getRawData());[/COLOR] form.add_variable('reason', YAHOO.util.Dom.get(this.editorid + '_edit_reason').value); form.add_variable('wysiwyg', vB_Editor[this.editorid].is_wysiwyg_mode());
Index: [COLOR="#FFA500"]clientscript/blog_quick_edit.js[/COLOR] =================================================================== --- clientscript/blog_quick_edit.js (revision 55763) +++ clientscript/blog_quick_edit.js (revision 55764) @@ -465,7 +465,7 @@ } form.add_variable(this.factory.objecttype, this.objectid); - [COLOR="#FF0000"]form.add_variable('message', vB_Editor[this.editorid].get_editor_contents());[/COLOR] + [COLOR="#0000FF"]form.add_variable('message', vB_Editor[this.editorid].getRawData());[/COLOR] form.add_variable('reason', YAHOO.util.Dom.get(this.editorid + '_edit_reason').value); form.add_variable('wysiwyg', vB_Editor[this.editorid].is_wysiwyg_mode());
Index: [COLOR="#FFA500"]clientscript/vbulletin_quick_edit_generic.js[/COLOR] =================================================================== --- clientscript/vbulletin_quick_edit_generic.js (revision 55763) +++ clientscript/vbulletin_quick_edit_generic.js (revision 55764) @@ -502,7 +502,7 @@ } form.add_variable(this.vars.objecttype, this.objectid); - [COLOR="#FF0000"]form.add_variable('message', vB_Editor[this.editorid].get_editor_contents());[/COLOR] + [COLOR="#0000FF"]form.add_variable('message', vB_Editor[this.editorid].getRawData());[/COLOR] form.add_variable('reason', YAHOO.util.Dom.get(this.editorid + '_edit_reason').value); form.add_variable('wysiwyg', vB_Editor[this.editorid].is_wysiwyg_mode());
Index: [COLOR="#FFA500"]clientscript/vbulletin_textedit.js[/COLOR] =================================================================== --- clientscript/vbulletin_textedit.js (revision 55763) +++ clientscript/vbulletin_textedit.js (revision 55764) @@ -772,7 +772,7 @@ } else { - [COLOR="#FF0000"]var changed = (vB_Editor[x].initial_text_crc32 != current_text_crc32);[/COLOR] + [COLOR="#0000FF"]var changed = (vB_Editor[x].lastautosave_text_crc32 != null && vB_Editor[x].initial_text_crc32 != current_text_crc32);[/COLOR] } if (vB_Editor[x].initialized && changed)
Index: [COLOR="#FFA500"]clientscript/vbulletin_quick_edit.js[/COLOR] =================================================================== --- clientscript/vbulletin_quick_edit.js (revision 55763) +++ clientscript/vbulletin_quick_edit.js (revision 55764) @@ [COLOR="#FF0000"][B]-414,7 +414,7[/B][/COLOR] @@ form.add_variable('quickeditnoajax', 1); } form.add_variable('postid', vB_QuickEditor.postid); - [COLOR="#FF0000"]form.add_variable('message', vB_Editor[vB_QuickEditor.editorid].get_editor_contents());[/COLOR] + [COLOR="#0000FF"]form.add_variable('message', vB_Editor[vB_QuickEditor.editorid].getRawData());[/COLOR] form.add_variable('reason', fetch_object(vB_QuickEditor.editorid + '_edit_reason').value); form.add_variable('posthash', vBulletin.attachinfo.posthash); form.add_variable('poststarttime', vBulletin.attachinfo.poststarttime);
Comment