summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--functions.php14
1 files changed, 8 insertions, 6 deletions
diff --git a/functions.php b/functions.php
index b445ab675..a5da7b0bb 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 {