Merge pull request #240 from Riduidel/Freenews_v_2.0
Encore ce fameux problème de SimpleXMLElement
This commit is contained in:
commit
dca001dffc
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue