[CS-Project-svn_notify] SF.net SVN: cs-project: [666] trunk/lib/noteClass.php
Brought to you by:
crazedsanity
From: <cra...@us...> - 2007-11-21 21:30:06
|
Revision: 666 http://cs-project.svn.sourceforge.net/cs-project/?rev=666&view=rev Author: crazedsanity Date: 2007-11-21 13:29:25 -0800 (Wed, 21 Nov 2007) Log Message: ----------- No longer wordwrap() note body in main noteClass. /lib/get_notes(): -- remove arbitrary call to wordwrap(). Modified Paths: -------------- trunk/lib/noteClass.php Modified: trunk/lib/noteClass.php =================================================================== --- trunk/lib/noteClass.php 2007-11-21 20:51:59 UTC (rev 665) +++ trunk/lib/noteClass.php 2007-11-21 21:29:25 UTC (rev 666) @@ -2,11 +2,11 @@ /* * SVN INFORMATION::: * ------------------ - * SVN Signature::::::: $Id$ - * Last Author::::::::: $Author$ - * Current Revision:::: $Revision$ - * Repository Location: $HeadURL$ - * Last Updated:::::::: $Date$ + * SVN Signature::::::: $Id:noteClass.php 626 2007-11-20 16:54:11Z crazedsanity $ + * Last Author::::::::: $Author:crazedsanity $ + * Current Revision:::: $Revision:626 $ + * Repository Location: $HeadURL:https://cs-project.svn.sourceforge.net/svnroot/cs-project/trunk/lib/noteClass.php $ + * Last Updated:::::::: $Date:2007-11-20 10:54:11 -0600 (Tue, 20 Nov 2007) $ */ @@ -103,7 +103,6 @@ foreach($retval as $id=>$arr) { //add some wrapping & cleaning (so the data appears properly) - $retval[$id]['body'] = wordwrap($arr['body'], 95); $retval[$id]['subject'] = cleanString($retval[$id]['subject'], "htmlentity_plus_brackets"); $retval[$id]['body'] = cleanString($retval[$id]['body'], "htmlentity_plus_brackets"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |