[feladat @ 269]
Minor layout bug: Made sure the table row was closed before starting a new one.
--- a/list_zones.php Tue May 13 21:35:17 2008 +0000
+++ b/list_zones.php Thu May 15 19:02:53 2008 +0000
@@ -59,7 +59,6 @@
echo " <th>" . _('Records') . "</th>\n";
echo " <th>" . _('Owner') . "</th>\n";
echo " </tr>\n";
- echo " <tr>\n";
if ($count_zones_view <= $iface_rowamount) {
$zones = get_zones($perm_view,$_SESSION['userid'],"all",ROWSTART,$iface_rowamount);
@@ -85,8 +84,8 @@
echo " <td class=\"y\">" . strtolower($zone["type"]) . "</td>\n";
echo " <td class=\"y\">" . $zone["count_records"] . "</td>\n";
echo " <td class=\"y\">" . $zone_owners . "</td>\n";
+ echo " </tr>\n";
}
- echo " </tr>\n";
echo " </table>\n";
}