MyBB Community Forums

Full Version: blank space after "quote='"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If reply some mensage, sceditor create blank space after "quote='" when go to source mode and return to WYSIWYG mode and go to source mode again.

Tested using last version of Chrome and FF.

[Image: caJLi32.png]
I can confirm it.

For fix in bbcodes_sceditor.js
find:
author = $cite.text() || $elm.data('author');
Replace with:
author = $elm.data('author') || $cite.text();

find:
author  = '=' + author;
Replace with:
author  = "='" + author;

find:
author += " pid='" + $elm.data('pid') + "'";
Replace with:
author += "' pid='" + $elm.data('pid') + "'";

find:
			if(typeof attrs.defaultattr !== "undefined")
				content = '<cite>' + attrs.defaultattr + '</cite>' + content;
Replace with:
			if(typeof attrs.defaultattr !== "undefined")
			{
				content = '<cite>' + attrs.defaultattr + '</cite>' + content;
				data += ' data-author="' + attrs.defaultattr + '"';
			}
good work...
for me this fix work fine..
could you push it to github?
(2014-07-07, 12:40 PM)Eldenroot Wrote: [ -> ]could you push it to github?

you need read this first https://github.com/mybb/mybb/blob/featur...IBUTING.md
we canĀ“t push anything if issue is not confirmed by mybb team.
we need wait until MyBB team confirm the bug...
the problem that can take almost a month or more to confirm...
yeah, bad system
Hi,

Thank you for your report. We have pushed this issue to our Github repository for further analysis where you can track our commits and progress with fixing this bug. Discussions regarding this bug may also take place there too.

Follow this link to visit the issue on Github: https://github.com/mybb/mybb/issues/898

Thanks for contributing to MyBB!

Regards,
The MyBB Group
Thanks!
It's fixed in #901