Those with the "<br />" issue.
I have just spent an hour or so sorting this out and I think I have a solution. I think this only works if you have the lightweight style options hack as well.
The issue: Reply to thread still uses CKEditor. If you switch the template back to a simple textarea, as it was before, the quote isn't passed.
To fix:
Copy the contents of template
editor_toolbar_off to
editor_ckeditor.
This gives you the quote, but gives you all sorts of <br /> tags and other HTML stuff.
This issue is caused when the user has the WYSIWYG set, so we need to turn that off in the mobile style.
Add the following plugin:
Product: Lightweight Style Options
Hook Location: editor_toolbar_switch
Execution order: 5
PHP Code:
PHP Code:
if (STYLEID==$vbulletin->options['ls_mobile_style'])
{
$vbulletin->userinfo[showvbcode]=0;
}
Give it a whirl, seems to have worked for me.