1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 04:12:00 +02:00

More Notice removal

This commit is contained in:
Cameron
2014-02-04 06:58:13 -08:00
parent bb34f0f425
commit e4c15a5646
2 changed files with 6 additions and 6 deletions

View File

@@ -33,10 +33,10 @@ class news_related // include plugin-folder in the name.
while($row = $sql->fetch())
{
$items[] = array(
'title' => $row['news_title'],
'title' => varset($row['news_title']),
'url' => e107::getUrl()->create('news/view/item',$row), // '{e_BASE}news.php?extend.'.$row['news_id'],
'body' => $row['news_summary'],
'image' => $row['news_image']
'body' => varset($row['news_summary']),
'image' => varset($row['news_image'])
);
}