View Full Version : Editor in 4.1.4
Saphyrus
07-08-2011, 08:25 AM
Hi,
i installed vBulletin 4.1.4 - everything is fine but the editor.
When I want to center a whole text, I have to center very often:
testtest
[quote.]test[/.quote] (sure without points in real!)
lalala
In this example "lalala" isn't centered in my forum!! Sure I put [./center] in the start and end.
After the quote or the hide tags, it doesn't work correctly.
It has to look like this:
[center]
testtest
[quote.]test[/.quote] (sure without points in real!)
[center.]lalala[/center.] (sure without points in real!)
Can anybody help?
Sorry for my bad english :(
Greetz
It seems that before 4.1.4 xxx would use <div align="center">xxx</div>, now it uses <p style="text-align: center;">xxx</p> and for some reason if "xxx" includes quote bbcode, the part after isn't centered (as you pointed out).
This is defined in includes/class_bbcode.php like this:
// [CENTER]
$tag_list['no_option']['center'] = array(
'html' => '<p style="text-align: center;">%1$s</p>',
'strip_empty' => true,
'strip_space_after' => 1
);
So you could change it, but there must have been a reason for changing it in the first place (or one would hope so, in any case), so if you changed it back you might break something else.
Saphyrus
07-09-2011, 02:01 PM
It seems that before 4.1.4 xxx would use <div align="center">xxx</div>, now it uses <p style="text-align: center;">xxx</p> and for some reason if "xxx" includes quote bbcode, the part after isn't centered (as you pointed out).
This is defined in includes/class_bbcode.php like this:
// [CENTER]
$tag_list['no_option']['center'] = array(
'html' => '<p style="text-align: center;">%1$s</p>',
'strip_empty' => true,
'strip_space_after' => 1
);
So you could change it, but there must have been a reason for changing it in the first place (or one would hope so, in any case), so if you changed it back you might break something else.
works thx!!!!
another question:
i installed 3 bb codes: hide, hide-reply, and spoiler.
in the WYSIWYG editor, everything works finde,
but in the standard editor, when i press these buttons, i get everytime only the spoiler tag...
can anybody help me?
sry for my english...
greetz
Lynne
07-09-2011, 04:04 PM
The issue with your custom bbcodes is a bug. It is in the tracker over on vbulletin.com. I believe there is a fix posted in the bug report.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.