Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Boardyogi

Pages: [1]
1
Hallo Alle,
Nach Upgrade zu 1.10 wurden die Kategoriebeschreibungen, die bei mir HTML enthalten, nicht mehr geparst.
Der Fehler liegt in den Scripten categories.php und includes/functions.php

Sucht/search in categories.php nach
Code: [Select]
"cat_description" => htmlspecialchars(format_text($cat_cache[$cat_id]['cat_description'], 1, 0, 1)),
und ersetzt/replace mit:
Code: [Select]
"cat_description" => un_htmlspecialchars(format_text($cat_cache[$cat_id]['cat_description'], 1, 0, 1)),
in includes/functions.php such/search nach
Code: [Select]
"cat_description" => htmlspecialchars(format_text($cat_cache[$category_id]['cat_description'], 1)),
und ersetzt/replace mit
Code: [Select]
"cat_description" => un_htmlspecialchars(format_text($cat_cache[$category_id]['cat_description'], 1)),
Das sollte die Anzeigeprobleme beheben.

*** for english speakers **
If you have trouble to get the correct html output in categories, please search in categories.php and includes/functions.php the rows above and change accordingly. This should solve the issue.

Pages: [1]