From 3b9e5af4b93279926c27a1c9c19b223b93ba0cea Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 17 Jan 2008 06:45:55 +0100 Subject: [PATCH] simplepie: check whether enclosures array is defined before parsing --- functions.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/functions.php b/functions.php index b445ab67..a5da7b0b 100644 --- a/functions.php +++ b/functions.php @@ -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 { -- 2.39.2