Login | Forgot password | Register
What is OpenID?
OpenID is an Internet-wide identity system that allows you to sign in to many websites with a single account.
With OpenID, your ID becomes a URL (e.g. http://username.myopenid.com/). You can get a free OpenID for example from myopenid.com.
For more information visit the official OpenID site.
Archive
SilverStripe Forums » Archive » Blog module and FirstParagraph - BUG?
Our old forums are still available as a read-only archive.
|
Page:
1
|
Go to End | |
| Author | Topic: Blog module and FirstParagraph - BUG? | 903 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
| 903 Views | ||
|
Page:
1
|
Go to Top |


