[feladat @ 269]
authorpeter
Thu, 15 May 2008 19:02:53 +0000
changeset 163 32d4c63c50c9
parent 162 e109f389316c
child 164 4c6adb48dcfd
[feladat @ 269] Minor layout bug: Made sure the table row was closed before starting a new one.
list_zones.php
--- 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";
 
 }