Changed how the enclosures array is checked for content so an empty array is not processed. Fixes a change from the previous branch commit.
This commit is contained in:
parent
2bb11658a8
commit
c6ce584dd5
1 changed files with 1 additions and 1 deletions
|
@ -1856,7 +1856,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
if ($rv === '' && is_array($result)) {
|
||||
if ($rv === '' && !empty($result)) {
|
||||
$entries_html = array();
|
||||
$entries = array();
|
||||
$entries_inline = array();
|
||||
|
|
Loading…
Reference in a new issue