[Fusionforge-commits] r12331 - trunk/src/www/register

Christian Bayle cbayle at fusionforge.org
Sun Feb 20 10:23:09 CET 2011


Author: cbayle
Date: 2011-02-20 10:23:08 +0100 (Sun, 20 Feb 2011)
New Revision: 12331

Modified:
   trunk/src/www/register/index.php
Log:
Fix test on number of available template projects


Modified: trunk/src/www/register/index.php
===================================================================
--- trunk/src/www/register/index.php	2011-02-20 00:21:15 UTC (rev 12330)
+++ trunk/src/www/register/index.php	2011-02-20 09:23:08 UTC (rev 12331)
@@ -247,7 +247,7 @@
 
 echo '<h2>'.$index++.'. '._('Project template'). '</h2>';
 
-if (count ($template_projects) > 1) {
+if (count ($template_projects) >= 1) {
 	$tpv_arr = array () ;
 	$tpn_arr = array () ;
 	echo '<p>';




More information about the Fusionforge-commits mailing list