17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1515 Views |
-
Blog module and FirstParagraph - BUG?

12 June 2008 at 7:47pm
Possible bug with the current nightly build and SS 2.2.2 fresh install.
This only applies when BlogEntry::allow_wysiwyg_editing(); is included in _config.php
Line 111 of BlogEntry.php - ParagraphSummary Method
function ParagraphSummary(){
if(self::$allow_wysiwyg_editing) {
return $this->obj('Content')->FirstParagraph('html');
} else {
$parser = new BBCodeParser($this->Content);
$html = new HTMLText('Content');
$html->setValue($parser->parse());
return $html->FirstParagraph('html');
}
}$this->obj('Content')->FirstParagraph('html') doesn't appear to return the first paragraph at all? Seems to work fine when wysiwyg is disabled.
Problem with the FirstParagraph method? -
Re: Blog module and FirstParagraph - BUG?

12 June 2008 at 7:51pm
Ah, comment above FirstParagraph method in sapphire/core/models/fieldtypes/Text.php
/**
* Caution: Not XML/HTML-safe - does not respect closing tags.
*/ -
Re: Blog module and FirstParagraph - BUG?

7 July 2008 at 11:45am
This issue is being tracked here: http://open.silverstripe.com/ticket/2547
-
Re: Blog module and FirstParagraph - BUG?

23 August 2008 at 4:23am
Thank you VERY MUCH for this thread-- this was VERY helpful to me, as I had the same problem myself after enabling HTML in the Blog Entries.
//Garrett
| 1515 Views | ||
|
Page:
1
|
Go to Top |



