mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
"0" is a valid title.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10338 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
c3e65a957b
commit
2ac753b725
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ while ($row = $feed->get_item())
|
||||||
$options = $row[$feed->get('options')];
|
$options = $row[$feed->get('options')];
|
||||||
}
|
}
|
||||||
|
|
||||||
$title = ($row[$feed->get('title')]) ? $row[$feed->get('title')] : ((isset($row[$feed->get('title2')])) ? $row[$feed->get('title2')] : '');
|
$title = (isset($row[$feed->get('title')]) && $row[$feed->get('title')] !== '') ? $row[$feed->get('title')] : ((isset($row[$feed->get('title2')])) ? $row[$feed->get('title2')] : '');
|
||||||
|
|
||||||
$item_time = (int) $row[$feed->get('date')];
|
$item_time = (int) $row[$feed->get('date')];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue