|
From: <tr...@us...> - 2013-01-09 22:09:25
|
Revision: 10728
http://sourceforge.net/p/xoops/svn/10728
Author: trabis
Date: 2013-01-09 22:09:22 +0000 (Wed, 09 Jan 2013)
Log Message:
-----------
Fixing bug, summary not truncated in blocks
Modified Paths:
--------------
XoopsModules/publisher/trunk/publisher/class/item.php
Modified: XoopsModules/publisher/trunk/publisher/class/item.php
===================================================================
--- XoopsModules/publisher/trunk/publisher/class/item.php 2013-01-09 22:03:19 UTC (rev 10727)
+++ XoopsModules/publisher/trunk/publisher/class/item.php 2013-01-09 22:09:22 UTC (rev 10728)
@@ -156,7 +156,7 @@
if (!XOOPS_USE_MULTIBYTES) {
if (strlen($ret) >= $maxLength) {
//$ret = publisher_substr($ret , 0, $maxLength);
- //$ret = publisher_truncateTagSafe($ret, $maxLength, $etc = '...', $break_words = false);
+ $ret = publisher_truncateTagSafe($ret, $maxLength, $etc = '...', $break_words = false);
}
}
}
|