Durch einen Hinweis von Mike_B auf
phpkit.de konnte ein kleiner Bugfix gefixt werden, der es verhinderte das in der ?path=contentarchive&type=2 Smilies bzw. BBCode angezeigt werden konnte.
suche in pkinc/public/contentarchive.php:
|
PHP-Quelltext
|
1
2
|
$content_headline = $BBCODE->parse($contentinfo['content_header'].' '.$contentinfo['content_text'],1,1,1,1);
$content_headline = strip_tags($content_headline);
|
und ersetze mit:
|
PHP-Quelltext
|
1
2
3
4
|
##### Headline Fix by burnerfm.de #####
$content_headline = $BBCODE->parse($contentinfo['content_header'].' '.$contentinfo['content_text'],$contentinfo['content_html'],$contentinfo['content_ubb'],$contentinfo['content_smilies'],1);
$content_headline = strip_tags($content_headline,'<img><span><b><i><hr><a><u><li>'); //--> Erweiterbar per HTML TAG
##### Headline Fix by burnerfm.de #####
|