Browse Source

Fix missing / on closing <tr> tags.

Nate Jones 11 năm trước cách đây
mục cha
commit
39f282213b

+ 1 - 1
core/databases/databases.php

@@ -120,7 +120,7 @@ require_once "resources/paging.php";
 	echo "<td class='list_control_icons'>";
 	echo 	"<a href='database_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
 	echo "</td>\n";
-	echo "<tr>\n";
+	echo "</tr>\n";
 
 	if ($result_count > 0) {
 		foreach($result as $row) {

+ 1 - 1
core/domain_settings/domains.php

@@ -173,7 +173,7 @@ else {
 		echo "<a href='domain_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
 	}
 	echo "</td>\n";
-	echo "<tr>\n";
+	echo "</tr>\n";
 
 	if ($result_count > 0) {
 		foreach($result as $row) {

+ 1 - 1
core/menu/menu.php

@@ -113,7 +113,7 @@ require_once "resources/paging.php";
 	echo "<td class='list_control_icons'>";
 	echo "<a href='menu_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
 	echo "</td>\n";
-	echo "<tr>\n";
+	echo "</tr>\n";
 
 	if ($result_count > 0) {
 		foreach($result as $row) {

+ 1 - 1
core/users/users.php

@@ -157,7 +157,7 @@ echo "	<td align=\"center\">\n";
 		echo "<a href='signup.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
 	}
 	echo "</td>\n";
-	echo "<tr>\n";
+	echo "</tr>\n";
 
 	if ($result_count > 0) {
 		foreach($result as $row) {