From 43fd90621e72235bbca034a598496521738da031 Mon Sep 17 00:00:00 2001 From: Andrew O'Neil Date: Mon, 7 Jan 2008 19:40:36 +0000 Subject: [PATCH] Fix RSS feed when using WYSIWYG editing --- code/BlogEntry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/BlogEntry.php b/code/BlogEntry.php index 372a2be..05e1e9e 100644 --- a/code/BlogEntry.php +++ b/code/BlogEntry.php @@ -124,7 +124,7 @@ class BlogEntry extends Page { */ function ParsedContent() { if(self::$allow_wysiwyg_editing) { - return $this->Content; + return $this->obj('Content'); } else { $parser = new BBCodeParser($this->Content); $content = new Text('Content');