mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-29 05:41:28 +00:00
simplepie: check whether enclosures array is defined before parsing
This commit is contained in:
@@ -859,7 +859,7 @@
|
||||
|
||||
$additional_tags = array();
|
||||
$additional_tags_src = $item->get_categories();
|
||||
|
||||
|
||||
if (is_array($additional_tags_src)) {
|
||||
foreach ($additional_tags_src as $tobj) {
|
||||
array_push($additional_tags, $tobj->get_term());
|
||||
@@ -919,11 +919,13 @@
|
||||
if (ENABLE_SIMPLEPIE) {
|
||||
$encs = $item->get_enclosures();
|
||||
|
||||
foreach ($encs as $e) {
|
||||
$e_item = array(
|
||||
$e->link, $e->type, $e->length);
|
||||
|
||||
array_push($enclosures, $e_item);
|
||||
if (is_array($encs)) {
|
||||
foreach ($encs as $e) {
|
||||
$e_item = array(
|
||||
$e->link, $e->type, $e->length);
|
||||
|
||||
array_push($enclosures, $e_item);
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user