Merge pull request #9676 from MrPetovan/bug/9639-limit-ap-emoji-size

Restore Mastodon emoji span classes
This commit is contained in:
Michael Vogel 2020-12-18 19:40:47 +01:00 committed by GitHub
commit c6bb405b07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -50,7 +50,7 @@ use Friendica\Util\XML;
class BBCode
{
// Update this value to the current date whenever changes are made to BBCode::convert
const VERSION = '2020-12-06';
const VERSION = '2020-12-18-small-emojis';
const INTERNAL = 0;
const API = 2;
@ -1467,7 +1467,7 @@ class BBCode
$text = preg_replace("(\[style=(.*?)\](.*?)\[\/style\])ism", '<span style="$1">$2</span>', $text);
// Check for CSS classes
$text = preg_replace("(\[class=(.*?)\](.*?)\[\/class\])ism", '<span style="$1">$2</span>', $text);
$text = preg_replace("(\[class=(.*?)\](.*?)\[\/class\])ism", '<span class="$1">$2</span>', $text);
// handle nested lists
$endlessloop = 0;

View File

@ -277,6 +277,10 @@ class BBCodeTest extends MockedTest
'expectedHTML' => '<span style="color:#FFFFFF;">dare to move your mouse here</span>',
'text' => '[color=FFFFFF]dare to move your mouse here[/color]'
],
'bug-9639-span-classes' => [
'expectedHTML' => '<span class="arbitrary classes">Test</span>',
'text' => '[class=arbitrary classes]Test[/class]',
],
];
}