[evolvis-commits] r8990: Fixed bug [ #476 ] Trove descriptions have slashes in them?==?UTF-8?Q?↵

mirabilos at evolvis.org mirabilos at evolvis.org
Thu Feb 24 16:57:01 CET 2011


Author: mirabilos
Date: 2011-02-24 16:57:01 +0100 (Thu, 24 Feb 2011)
New Revision: 8990

Modified:
   trunk/gforge_base/evolvisforge-5.1/gforge/ChangeLog
   trunk/gforge_base/evolvisforge-5.1/gforge/www/include/project_home.php
Log:
Fixed bug [ #476 ] Trove descriptions have slashes in them


Modified: trunk/gforge_base/evolvisforge-5.1/gforge/ChangeLog
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/ChangeLog	2011-02-24 15:57:00 UTC (rev 8989)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/ChangeLog	2011-02-24 15:57:01 UTC (rev 8990)
@@ -5,6 +5,9 @@
 	by running it with an argument in days, like "./history_parse.php 120",
 	which would populate the past 120 days of stats.
 
+	* www/include/project_home.php:
+	Fixed bug [ #476 ] Trove descriptions have slashes in them
+
 2003-07-29 Christian Bayle	<bayle at debian.org>
 
 	* Don't allow to go in QRS if no package is defined or activ

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/include/project_home.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/include/project_home.php	2011-02-24 15:57:00 UTC (rev 8989)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/include/project_home.php	2011-02-24 15:57:01 UTC (rev 8990)
@@ -54,7 +54,7 @@
 
 // trove info
 print "<br />\n";
-print trove_getcatlisting($group_id,0,1);
+print stripslashes(trove_getcatlisting($group_id,0,1));
 
 // registration date
 print($Language->getText('group', 'registered') . date($sys_datefmt, $project->getStartDate()));



More information about the evolvis-commits mailing list