[Fusionforge-commits] r8824 - trunk/gforge/www/include

Thorsten Glaser mirabilos at libremir.placard.fr.eu.org
Mon Feb 15 16:44:52 CET 2010


Author: mirabilos
Date: 2010-02-15 16:44:52 +0100 (Mon, 15 Feb 2010)
New Revision: 8824

Modified:
   trunk/gforge/www/include/project_home.php
Log:
bugfix: 16:42?\226?\142?\156<mira|AO:#fusionforge> printf("text")."othertext"; ?\226?\134?\144 no good idea

caught because the same code is used by the evolvis.org theme?\226?\128?\153s sidebar


Modified: trunk/gforge/www/include/project_home.php
===================================================================
--- trunk/gforge/www/include/project_home.php	2010-02-12 16:49:32 UTC (rev 8823)
+++ trunk/gforge/www/include/project_home.php	2010-02-15 15:44:52 UTC (rev 8824)
@@ -329,9 +329,8 @@
 		for ($j = 0; $j < $rows; $j++) {
 			echo '<li>';
 			echo util_make_link ('/tracker/?atid='. db_result($result, $j, 'group_artifact_id')  . '&amp;group_id='.$group_id.'&amp;func=browse',db_result($result, $j, 'name')) . ' ' ;
-			printf(ngettext('(<strong>%1$s</strong> open / <strong>%2$s</strong> total)', '(<strong>%1$s</strong> open / <strong>%2$s</strong> total)', (int) db_result($result, $j, 'open_count')), (int) db_result($result, $j, 'open_count'), (int) db_result($result, $j, 'count')) .'<br />'.
-			 db_result($result, $j, 'description');
-			echo '</li>' ;
+			printf(ngettext('(<strong>%1$s</strong> open / <strong>%2$s</strong> total)', '(<strong>%1$s</strong> open / <strong>%2$s</strong> total)', (int) db_result($result, $j, 'open_count')), (int) db_result($result, $j, 'open_count'), (int) db_result($result, $j, 'count'));
+			echo '<br />'.db_result($result, $j, 'description').'</li>';
 		}
 		echo '</ul>';
 	}




More information about the Fusionforge-commits mailing list