Original Post von headless am 25.01.2007 - 12:55
Diskussion: http://archiv.kit-security.de/include.php?path=forum/showthread.php&threadid=4252
Der IMG BBCode Funktioniert trotz der Einstellung "nicht erlauben" im Adminbereich
Also für die 1.6.1 & 1.6.03 allgemein gültig, suche in der Datei comment.php nach:
|
PHP-Quelltext
|
1
2
|
if ($comcat=='user') $comment_text=$PARSE->parse($comment['comment_text'],0,$config['text_ubb'],$config['text_smilies'],$config['text_images'],1);
else $comment_text=$PARSE->parse($comment['comment_text'], 0, $config['comment_bb'], $config['comment_smilies'],$config['comment_images'],1);
|
und ersetze es mit:
|
PHP-Quelltext
|
1
2
|
if ($comcat=='user') $comment_text=$PARSE->parse($comment['comment_text'],0,$config['text_ubb'],$config['text_smilies'],$config['comment_images'],1);
else $comment_text=$PARSE->parse($comment['comment_text'], 0, $config['comment_bb'], $config['comment_smilies'],$config['comment_images'],1);
|