1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-19 12:51:52 +02:00

fixes #3245 eHelper::title2sef() now strips any html or bbcode

forum_admin.php: make sure to strip bbcode and html from forum_name
forum_admin.php: make sure forum_sef doesn't contain bbcode or html and is properly formatted
English_admin.php: Added FORLAN_223 = forum_name help text
This commit is contained in:
Achim Ennenbach
2018-08-10 21:01:04 +02:00
parent 22dc8b8669
commit 169acdaba3
3 changed files with 26 additions and 2 deletions

View File

@@ -4690,6 +4690,9 @@ class eHelper
$tp = e107::getParser();
// issue #3245: strip all html and bbcode before processing
$title = $tp->toText($title);
$title = $tp->toASCII($title);
$title = str_replace(array('/',' ',","),' ',$title);