[Fusionforge-commits] r18759 - trunk/src/www/softwaremap

Marc-Etienne VARGENAU vargenau at fusionforge.org
Mon Jan 6 17:27:50 CET 2014


Author: vargenau
Date: 2014-01-06 17:27:50 +0100 (Mon, 06 Jan 2014)
New Revision: 18759

Modified:
   trunk/src/www/softwaremap/tag_cloud.php
Log:
Add <br />

Modified: trunk/src/www/softwaremap/tag_cloud.php
===================================================================
--- trunk/src/www/softwaremap/tag_cloud.php	2014-01-06 16:18:06 UTC (rev 18758)
+++ trunk/src/www/softwaremap/tag_cloud.php	2014-01-06 16:27:50 UTC (rev 18759)
@@ -94,11 +94,12 @@
 
 	// only display pages stuff if there is more to display
 	if ($querytotalcount > $TROVE_BROWSELIMIT) {
-		$html_limit .= ' ' ;
-		$html_limit .= sprintf (ngettext ('Displaying %d project per page. Projects sorted by alphabetical order.',
+		$html_limit .= ' ';
+		$html_limit .= sprintf(ngettext('Displaying %d project per page. Projects sorted by alphabetical order.',
 						  'Displaying %d projects per page. Projects sorted by alphabetical order.',
 						  $TROVE_BROWSELIMIT),
 						$TROVE_BROWSELIMIT);
+		$html_limit .= '.<br />';
 
 		// display all the numbers
 		for ($i=1 ;$i <= ceil($querytotalcount/$TROVE_BROWSELIMIT); $i++) {
@@ -160,8 +161,8 @@
 			}
 			printf ('<br />'._('Activity Percentile: <strong>%3.0f</strong>'), $percentile);
 			printf ('<br />'._('Activity Ranking: <strong>%d</strong>'), $ranking);
-			printf ('<br />'._('Registered: <strong>%s</strong>'),
-				date(_('Y-m-d H:i'),$row_grp['register_time']));
+			printf ('<br />'._('Registered') . _(': '));
+            printf ('<strong>%s</strong>', date(_('Y-m-d H:i'),$row_grp['register_time']));
 			print '</td></tr>';
 			/*
 			 if ($row_grp['jobs_count']) {




More information about the Fusionforge-commits mailing list