|
From: <bl...@us...> - 2014-01-13 21:35:24
|
Revision: 12259
http://sourceforge.net/p/xoops/svn/12259
Author: bleekk
Date: 2014-01-13 21:35:21 +0000 (Mon, 13 Jan 2014)
Log Message:
-----------
delete coded <br/>
item summary and body not divided anymore by <br/><br/> tags
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-13 15:22:31 UTC (rev 12258)
+++ XoopsModules/publisher/trunk/publisher/class/item.php 2014-01-13 21:35:21 UTC (rev 12259)
@@ -245,7 +245,7 @@
if ($this->publisher->getConfig('item_disp_blocks_summary')) {
$summary = $this->summary($maxLength, $format, $stripTags);
if ($summary) {
- $ret = $this->summary() . '<br /><br />' . $ret;
+ $ret = $this->summary() . $ret;
}
}
if (!empty($stripTags)) {
|