17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1167 Views |
-
Problem with HTML formatted output

9 May 2008 at 11:25am
Has anyone run into a problem where the output of a wysywig field displays the contents as html entities (eg. </p>) instead of printing regular html? Here's my code:
Class file:
function LeftColumn() {
$data = DataObject::get_one("ProjectsHolder");
$results = DataObject::get("Page", "FeatureInLeftColumn = 1 AND ParentID = $data->ID", "Title DESC", "", $num);
return $results;
}Template:
<% control LeftColumn %>
$ListingImage.SetWidth(100)
<h2>$Title</h2>
$PageTeaser
<% end_control %>It works fine except $PageTeaser (a wysiwyg field) converts the html in the field to html entities as if it were a code example. The actual data in the field is fine. Any suggestions as to what could be wrong?
-
Re: Problem with HTML formatted output

9 May 2008 at 7:53pm
Have look at the data-type of your field.
It is probably a Textfield... If so , change it to an HTMLText field.
| 1167 Views | ||
|
Page:
1
|
Go to Top |


