4images Forum & Community
4images Issues / Ausgaben => Discussion & Troubleshooting => Topic started by: marod0er on April 08, 2006, 05:24:53 PM
-
Just a quick question.
For some reason I can't do HTML in my image description, even tho it says:
Description
HTML allowed.
For instance, when I enter "<b>Bold</b>" it displays it like this on the page: <b>Bold</b>
What am I doing wrong? This is the first time I've seen this...
Please help asap!
-
about what description do you speak?
-
You cant use HTML if you upload/edit images as a member and not from ACP
-
You cant use HTML if you upload/edit images as a member and not from ACP
I am using ACP, and hence I'm logged in as admin :)
Any help would be greatly appreciated, as I really need to be able to use HTML..
-
I've done some testing now, and it seems this only happens in the new 1.7.2 version... What could be causing this?
-
:( yeah, in 1.7.2 html can't be parsed in description, i have some codes and they show the whole code.
-
try to change in include/functions.php:
$description = (!empty($image_row['image_description'])) ? format_text($image_row['image_description'], 0) : REPLACE_EMPTY;
with
$description = (!empty($image_row['image_description'])) ? format_text($image_row['image_description'], 1) : REPLACE_EMPTY;
-
try to change in include/functions.php:
$description = (!empty($image_row['image_description'])) ? format_text($image_row['image_description'], 0) : REPLACE_EMPTY;
with
$description = (!empty($image_row['image_description'])) ? format_text($image_row['image_description'], 1) : REPLACE_EMPTY;
YES SIR! Thanks a lot man, that right there did the job :D