Skip to content

Commit

Permalink
removed if statement from view fixes bug 789408
Browse files Browse the repository at this point in the history
  • Loading branch information
ossreleasefeed committed Sep 12, 2012
1 parent b1e07c0 commit 8c4f4c9
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@

<?php
for ($i = 0; count($versions_in_result) > $i; $i++) {
if ($versions_in_result[$i] == $versions[$i]) {
$key = $versions_in_result[$i];
$key = $versions_in_result[$i];
?>

<td><?php
Expand Down Expand Up @@ -80,7 +79,6 @@
}
?></td>
<?php
}
}
?>
</tr>
Expand All @@ -90,8 +88,7 @@
<td class="date"><strong>Total</strong></td>
<?php
for ($i = 0; count($versions_in_result) > $i; $i++) {
if ($versions_in_result[$i] == $versions[$i]) {
$key = $versions_in_result[$i];
$key = $versions_in_result[$i];
?>
<td class="stat"><strong><?php
if (isset($statistics['versions'][$key]['crashes'])) {
Expand Down Expand Up @@ -119,7 +116,6 @@


<?php
}
}
?>
</tr>
Expand Down

0 comments on commit 8c4f4c9

Please sign in to comment.