*** empty log message ***
diff --git a/projects.php b/projects.php
index 631be0a..72a7b31 100644
--- a/projects.php
+++ b/projects.php
@@ -27,7 +27,6 @@
 			<?php include_once('includes/nav.php');?>			
 			<div id="window">
 				<?php include_once('includes/sidebar-1.php');?>	
-		
 				<div id="main">			
 					<table class="projects ">
 						<thead>
@@ -40,7 +39,11 @@
 					</table>
 					<div class="content-scroll">
 					<table class="projects" cellpadding="2" cellspacing="2">
-						
+						<tfoot>
+							<tr">							
+							<td id="td_count" colspan="3">Project count : <?php print $number_projects;?></td>
+						</tr>
+						</tfoot>
 						<?php 
 						$count = 0;
 						$new = 0;
@@ -53,9 +56,9 @@
 								if ($download) $download = "<a href=\"$download\"><img src=\"$images->download_small\"/></a>";
 								$url = $project->getProjectUrl();
 								$info = $project->getSimultaneousReleaseInfo($release);
-								//if (!$info) continue;
+								if (!$info) continue;
 		
-								if (isset($info) && $info->isNew()) {
+								if ($info->isNew()) {
 									$projectName = "$projectName [new]";
 									$new++;
 								}
@@ -70,7 +73,7 @@
 		
 								$count++;
 
-								print "<tr id=\"tb_pro_$count\">
+								print "<tr>
 											<td class=\"td_name\"><a href=\"$url\">$projectName</a>  <a href=\"http://www.eclipse.org/projects/project.php?id=$projectid\" class=\"gear_link\">Project information</a></td>
 											<td class=\"td_version\">$version</td>
 											<td class=\"td_download\">$download</td>
@@ -79,11 +82,6 @@
 						
 						}
 						?>
-						<tfoot>
-							<tr>							
-							<td id="td_count" colspan="3">Project count : <?php print $count;?></td>
-						</tr>
-						</tfoot>
 				</table>
 			</div>				
 		</div>