Use check_markup() to filter your output in drupal 5
On:
Tuesday, April 29, 2008 - 23:02
This makes sure all your content is filtered the way it's supposed to
check_markup($text, $format = FILTER_FORMAT_DEFAULT, $check = TRUE) //use it like this in for example a node template $body = check_markup($node->content["body"]["#value"], $node->format, FALSE); $field_whatever = check_markup($node->field_whatever[0]['value"], $node->format, FALSE);
Add new comment