Frontend\Core\Engine\RssItem::setDescription PHP Method

setDescription() public method

All links and images that link to internal files will be prepended with the sites URL
public setDescription ( string $description )
$description string 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);
    }