예제 #1
0
파일: RssItem.php 프로젝트: forkcms/forkcms
 /**
  * Set the description.
  * All links and images that link to internal files will be prepended with the sites URL
  *
  * @param string $description The content of the item.
  */
 public function setDescription($description)
 {
     // remove special chars
     $description = (string) \SpoonFilter::htmlspecialcharsDecode($description);
     // process links
     $description = $this->processLinks($description);
     // call parent
     parent::setDescription($description);
 }