From c6ce584dd56320da336ecbf69d424f0bc05f4f5a Mon Sep 17 00:00:00 2001 From: Dave Zaikos Date: Mon, 12 May 2014 13:54:04 -0400 Subject: [PATCH] Changed how the enclosures array is checked for content so an empty array is not processed. Fixes a change from the previous branch commit. --- include/functions2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions2.php b/include/functions2.php index cf1fba17..5228d875 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -1856,7 +1856,7 @@ } } - if ($rv === '' && is_array($result)) { + if ($rv === '' && !empty($result)) { $entries_html = array(); $entries = array(); $entries_inline = array(); -- 2.39.2