MantisBT: master-2.26 9a8f1277

Author Committer Branch Timestamp Parent
dregad dregad master-2.26 2024-02-13 10:39 master-2.26 7dcb81cd
Affected Issues  0033634: Error in creating RSS when there are no issues to publish
Changeset

Fix Error when creating empty RSS feed on PHP 8

When the feed is empty, ObjectIterator::size() throws a TypeError
exception on PHP 8.0+ (and a Warning on PHP 7.2+) due to calling count()
on $this->objectlist->objects, which is null in this case.

Initializing the ObjectList::$objects property to an empty array ensures
this never happens.

File was converted to UTF-8 and trailing ?> removed.

Fixes 0033634

mod - library/README.md Diff File
mod - library/rssbuilder/class.ObjectList.inc.php Diff File