Copyright Bar: Fixed overlapping issue with in Domain Edit/Settings.

This commit is contained in:
Nate Jones 2014-07-29 23:29:44 +00:00
parent 06a1f3bb32
commit 4bbfa90be3
2 changed files with 46 additions and 70 deletions

View File

@ -558,8 +558,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
}
//show the content
echo "<div align='center'>";
echo "<table width='100%' border='0' cellpadding='0' cellspacing=''>\n";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr class='border'>\n";
echo " <td align=\"left\">\n";
echo " <br>";
@ -626,16 +625,16 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
echo " </td>\n";
echo " </tr>";
echo "</table>";
echo "</div>";
echo "</form>";
if ($action == "update") {
require "domain_settings.php";
}
echo " <br /><br /><br />";
echo " </td>";
echo " </tr>";
echo "</table>";
echo "</div>";
//include the footer
require_once "resources/footer.php";

View File

@ -34,31 +34,13 @@ else {
exit;
}
require_once "resources/header.php";
//require_once "resources/header.php";
require_once "resources/paging.php";
//get variables used to control the order
$order_by = $_GET["order_by"];
$order = $_GET["order"];
//show the content
echo "<div align='center'>";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='2'>\n";
echo "<tr class='border'>\n";
echo " <td align=\"center\">\n";
echo " <br />";
//echo "<table width='100%' border='0'>\n";
//echo " <tr>\n";
//echo " <td width='50%' align='left' nowrap='nowrap'><b>Domain Settings</b></td>\n";
//echo " <td width='50%' align='right'>&nbsp;</td>\n";
//echo " </tr>\n";
//echo " <tr>\n";
//echo " <td align='left' colspan='2'>\n";
//echo " Settings used for each domain.<br /><br />\n";
//echo " </td>\n";
//echo " </tr>\n";
//echo "</table>\n";
//prepare to page the results
$sql = "select count(*) as num_rows from v_domain_settings ";
@ -105,7 +87,8 @@ require_once "resources/paging.php";
$row_style["0"] = "row_style0";
$row_style["1"] = "row_style1";
echo "<div align='center'>\n";
//show the content
echo "<br /><br />";
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
if ($result_count > 0) {
@ -113,7 +96,7 @@ require_once "resources/paging.php";
foreach($result as $row) {
if ($previous_category != $row['domain_setting_category']) {
echo "<tr>";
echo " <td colspan='4' align='left'>\n";
echo " <td colspan='6' align='left'>\n";
echo " <br />\n";
echo " <br />\n";
echo " <b>";
@ -211,15 +194,9 @@ require_once "resources/paging.php";
echo " </table>\n";
echo "</td>\n";
echo "</tr>\n";
echo "</table>";
echo "</div>";
echo "</td>";
echo "</tr>";
echo "</table>";
echo "</div>";
//include the footer
require_once "resources/footer.php";
//require_once "resources/footer.php";
?>