Encore ce fameux problème de SimpleXMLElement

This commit is contained in:
unknown 2016-03-28 20:10:18 +02:00
parent 3318e66cbc
commit a46ce5070e
1 changed files with 2 additions and 2 deletions

View File

@ -28,9 +28,9 @@ class Freenews extends RssExpander {
$item->title = trim($newsItem->title);
// $this->message("item has for title \"".$item->title."\"");
if(empty($newsItem->guid)) {
$item->uri = $newsItem->link;
$item->uri = (string) $newsItem->link;
} else {
$item->uri = $newsItem->guid;
$item->uri = (string) $newsItem->guid;
}
// now load that uri from cache
// $this->message("now loading page ".$item->uri);