Copyright Bar: Fixed overlapping issue with in Schema Edit/Fields.

This commit is contained in:
Nate Jones
2014-07-29 23:42:34 +00:00
parent 4bbfa90be3
commit 04ed56498b
2 changed files with 5 additions and 37 deletions

View File

@@ -178,7 +178,6 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
$document['title'] = $text['title-schema'];
//show the content
echo "<div align='center'>";
echo "<table width='100%' border='0' cellpadding='0' cellspacing=''>\n";
echo "<tr class='border'>\n";
echo " <td align=\"left\">\n";
@@ -264,31 +263,6 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
echo "</td>\n";
echo "</tr>\n";
//echo "<tr>\n";
//echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
//echo " Captcha:\n";
//echo "</td>\n";
//echo "<td class='vtable' align='left'>\n";
//echo " <select class='formfld' name='schema_captcha'>\n";
//echo " <option value=''></option>\n";
//if ($schema_captcha == "yes") {
// echo " <option value='yes' SELECTED >yes</option>\n";
//}
//else {
// echo " <option value='yes'>yes</option>\n";
//}
//if ($schema_captcha == "no") {
// echo " <option value='no' SELECTED >no</option>\n";
//}
//else {
// echo " <option value='no'>no</option>\n";
//}
//echo " </select>\n";
//echo "<br />\n";
//echo "Choose whether to require captcha.\n";
//echo "</td>\n";
//echo "</tr>\n";
echo "<tr>\n";
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
echo " ".$text['label-parent_schema'].":\n";
@@ -338,6 +312,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
echo " </td>\n";
echo " </tr>";
echo "</table>";
echo "</div>";
echo "</form>";
if ($action == "update") {
@@ -347,7 +322,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
echo " </td>";
echo " </tr>";
echo "</table>";
echo "</div>";
//show the footer
require_once "resources/footer.php";

View File

@@ -34,14 +34,13 @@ else {
exit;
}
require_once "resources/header.php";
//require_once "resources/header.php";
require_once "resources/paging.php";
$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";
@@ -57,7 +56,7 @@ $order = $_GET["order"];
echo $text['description-fields']."<br /><br />\n";
echo "</td>\n";
echo "</tr>\n";
echo "</tr></table>\n";
echo "</table>\n";
if (strlen($order_by) == 0) {
$order_by = 'field_order';
@@ -78,7 +77,6 @@ $order = $_GET["order"];
$row_style["0"] = "row_style0";
$row_style["1"] = "row_style1";
echo "<div align='center'>\n";
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
echo th_order_by('field_label', $text['label-field_label'], $order_by, $order);
@@ -191,19 +189,14 @@ $order = $_GET["order"];
echo " </table>\n";
echo "</td>\n";
echo "</tr>\n";
echo "</table>";
echo "</div>";
echo "<br><br>";
echo "<br><br>";
echo "</td>";
echo "</tr>";
echo "</table>";
echo "</div>";
echo "<br><br>";
//include the footer
require_once "resources/footer.php";
// require_once "resources/footer.php";
?>