diff --git a/CHANGELOG.md b/CHANGELOG.md index fd6e0f645..bfdddae85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ **Merged pull requests:** - Release 2.4.2 🐯 ([belomaxorka](https://github.com/belomaxorka)) +- Added support for rutracker font BBCode tag [\#1397](https://github.com/torrentpier/torrentpier/pull/1397) ([belomaxorka](https://github.com/belomaxorka)) - Added mod "Reason to move topic" [\#1388](https://github.com/torrentpier/torrentpier/pull/1388) ([belomaxorka](https://github.com/belomaxorka)) - Created template file for AJAX quick actions [\#1381](https://github.com/torrentpier/torrentpier/pull/1381) ([belomaxorka](https://github.com/belomaxorka)) - Removed `wbr()` [\#1387](https://github.com/torrentpier/torrentpier/pull/1387) ([belomaxorka](https://github.com/belomaxorka)) diff --git a/src/Legacy/BBCode.php b/src/Legacy/BBCode.php index 84736569d..02d65dbfe 100644 --- a/src/Legacy/BBCode.php +++ b/src/Legacy/BBCode.php @@ -91,6 +91,7 @@ class BBCode '#\[size=([1-2]?[0-9])\]#isu' => '', '#\[align=(left|right|center|justify)\]#isu' => '', '#\[font="([\w\- \']+)"\]#isu' => '', + '#\[font=([\w\- \']+)\]#isu' => '', "#\[img\]($img_exp)\[/img\]#isu" => $tpl['img'], "#\[img=(left|right|center)\]($img_exp)\[/img\]\s*#isu" => $tpl['img_aligned'], "#\[email\]($email_exp)\[/email\]#isu" => '$1',