Merge pull request #7601 from annando/issue-2199
Issue 2199: Diaspora doesn't interpret size elements
This commit is contained in:
commit
2dcb9926bc
|
@ -1404,8 +1404,14 @@ class BBCode extends BaseObject
|
||||||
|
|
||||||
// Check for sized text
|
// Check for sized text
|
||||||
// [size=50] --> font-size: 50px (with the unit).
|
// [size=50] --> font-size: 50px (with the unit).
|
||||||
|
if ($simple_html != 3) {
|
||||||
$text = preg_replace("(\[size=(\d*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1px; line-height: initial;\">$2</span>", $text);
|
$text = preg_replace("(\[size=(\d*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1px; line-height: initial;\">$2</span>", $text);
|
||||||
$text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1; line-height: initial;\">$2</span>", $text);
|
$text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", "<span style=\"font-size: $1; line-height: initial;\">$2</span>", $text);
|
||||||
|
} else {
|
||||||
|
// Issue 2199: Diaspora doesn't interpret the construct above, nor the <small> or <big> element
|
||||||
|
$text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", "$2", $text);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Check for centered text
|
// Check for centered text
|
||||||
$text = preg_replace("(\[center\](.*?)\[\/center\])ism", "<div style=\"text-align:center;\">$1</div>", $text);
|
$text = preg_replace("(\[center\](.*?)\[\/center\])ism", "<div style=\"text-align:center;\">$1</div>", $text);
|
||||||
|
|
|
@ -176,6 +176,28 @@ class BBCodeTest extends MockedTest
|
||||||
[*]http://example.com/
|
[*]http://example.com/
|
||||||
[/ul]',
|
[/ul]',
|
||||||
],
|
],
|
||||||
|
'bug-2199-named-size' => [
|
||||||
|
'expectedHtml' => '<span style="font-size: xx-large; line-height: initial;">Test text</span>',
|
||||||
|
'text' => '[size=xx-large]Test text[/size]',
|
||||||
|
'simpleHtml' => 0,
|
||||||
|
],
|
||||||
|
'bug-2199-numeric-size' => [
|
||||||
|
'expectedHtml' => '<span style="font-size: 24px; line-height: initial;">Test text</span>',
|
||||||
|
'text' => '[size=24]Test text[/size]',
|
||||||
|
'simpleHtml' => 0,
|
||||||
|
],
|
||||||
|
'bug-2199-diaspora-no-named-size' => [
|
||||||
|
'expectedHtml' => 'Test text',
|
||||||
|
'text' => '[size=xx-large]Test text[/size]',
|
||||||
|
// Triggers the diaspora compatible output
|
||||||
|
'simpleHtml' => 3,
|
||||||
|
],
|
||||||
|
'bug-2199-diaspora-no-numeric-size' => [
|
||||||
|
'expectedHtml' => 'Test text',
|
||||||
|
'text' => '[size=24]Test text[/size]',
|
||||||
|
// Triggers the diaspora compatible output
|
||||||
|
'simpleHtml' => 3,
|
||||||
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue