|
From: <bl...@us...> - 2014-01-17 14:47:32
|
Revision: 12266
http://sourceforge.net/p/xoops/svn/12266
Author: bleekk
Date: 2014-01-17 14:47:28 +0000 (Fri, 17 Jan 2014)
Log Message:
-----------
display who, when, category and main image in simple view
Modified Paths:
--------------
XoopsModules/publisher/trunk/publisher/class/item.php
Modified: XoopsModules/publisher/trunk/publisher/class/item.php
===================================================================
--- XoopsModules/publisher/trunk/publisher/class/item.php 2014-01-17 05:38:50 UTC (rev 12265)
+++ XoopsModules/publisher/trunk/publisher/class/item.php 2014-01-17 14:47:28 UTC (rev 12266)
@@ -684,6 +684,10 @@
$item['subtitle'] = $this->subtitle();
$item['datesub'] = $this->datesub();
$item['counter'] = $this->counter();
+ $item['who'] = $this->getWho();
+ $item['when'] = $this->getWhen();
+ $item['category'] = $this->getCategoryName();
+ $item = $this->getMainImage($item);
switch ($display) {
case 'summary':
case 'list':
|