Copyright Bar: Fixed overlapping issue with in Schema Edit/Fields.
This commit is contained in:
@@ -178,7 +178,6 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
|||||||
$document['title'] = $text['title-schema'];
|
$document['title'] = $text['title-schema'];
|
||||||
|
|
||||||
//show the content
|
//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=''>\n";
|
||||||
echo "<tr class='border'>\n";
|
echo "<tr class='border'>\n";
|
||||||
echo " <td align=\"left\">\n";
|
echo " <td align=\"left\">\n";
|
||||||
@@ -264,31 +263,6 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
|||||||
echo "</td>\n";
|
echo "</td>\n";
|
||||||
echo "</tr>\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 "<tr>\n";
|
||||||
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
echo "<td class='vncell' valign='top' align='left' nowrap='nowrap'>\n";
|
||||||
echo " ".$text['label-parent_schema'].":\n";
|
echo " ".$text['label-parent_schema'].":\n";
|
||||||
@@ -338,6 +312,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
|||||||
echo " </td>\n";
|
echo " </td>\n";
|
||||||
echo " </tr>";
|
echo " </tr>";
|
||||||
echo "</table>";
|
echo "</table>";
|
||||||
|
echo "</div>";
|
||||||
echo "</form>";
|
echo "</form>";
|
||||||
|
|
||||||
if ($action == "update") {
|
if ($action == "update") {
|
||||||
@@ -347,7 +322,7 @@ if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
|||||||
echo " </td>";
|
echo " </td>";
|
||||||
echo " </tr>";
|
echo " </tr>";
|
||||||
echo "</table>";
|
echo "</table>";
|
||||||
echo "</div>";
|
|
||||||
|
|
||||||
//show the footer
|
//show the footer
|
||||||
require_once "resources/footer.php";
|
require_once "resources/footer.php";
|
||||||
|
|||||||
@@ -34,14 +34,13 @@ else {
|
|||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once "resources/header.php";
|
//require_once "resources/header.php";
|
||||||
require_once "resources/paging.php";
|
require_once "resources/paging.php";
|
||||||
|
|
||||||
$order_by = $_GET["order_by"];
|
$order_by = $_GET["order_by"];
|
||||||
$order = $_GET["order"];
|
$order = $_GET["order"];
|
||||||
|
|
||||||
//show the content
|
//show the content
|
||||||
echo "<div align='center'>";
|
|
||||||
echo "<table width='100%' border='0' cellpadding='0' cellspacing='2'>\n";
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='2'>\n";
|
||||||
echo "<tr class='border'>\n";
|
echo "<tr class='border'>\n";
|
||||||
echo " <td align=\"center\">\n";
|
echo " <td align=\"center\">\n";
|
||||||
@@ -57,7 +56,7 @@ $order = $_GET["order"];
|
|||||||
echo $text['description-fields']."<br /><br />\n";
|
echo $text['description-fields']."<br /><br />\n";
|
||||||
echo "</td>\n";
|
echo "</td>\n";
|
||||||
echo "</tr>\n";
|
echo "</tr>\n";
|
||||||
echo "</tr></table>\n";
|
echo "</table>\n";
|
||||||
|
|
||||||
if (strlen($order_by) == 0) {
|
if (strlen($order_by) == 0) {
|
||||||
$order_by = 'field_order';
|
$order_by = 'field_order';
|
||||||
@@ -78,7 +77,6 @@ $order = $_GET["order"];
|
|||||||
$row_style["0"] = "row_style0";
|
$row_style["0"] = "row_style0";
|
||||||
$row_style["1"] = "row_style1";
|
$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 "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
||||||
echo "<tr>\n";
|
echo "<tr>\n";
|
||||||
echo th_order_by('field_label', $text['label-field_label'], $order_by, $order);
|
echo th_order_by('field_label', $text['label-field_label'], $order_by, $order);
|
||||||
@@ -191,19 +189,14 @@ $order = $_GET["order"];
|
|||||||
echo " </table>\n";
|
echo " </table>\n";
|
||||||
echo "</td>\n";
|
echo "</td>\n";
|
||||||
echo "</tr>\n";
|
echo "</tr>\n";
|
||||||
|
|
||||||
echo "</table>";
|
echo "</table>";
|
||||||
echo "</div>";
|
|
||||||
echo "<br><br>";
|
|
||||||
echo "<br><br>";
|
|
||||||
|
|
||||||
echo "</td>";
|
echo "</td>";
|
||||||
echo "</tr>";
|
echo "</tr>";
|
||||||
echo "</table>";
|
echo "</table>";
|
||||||
echo "</div>";
|
|
||||||
echo "<br><br>";
|
echo "<br><br>";
|
||||||
|
|
||||||
//include the footer
|
//include the footer
|
||||||
require_once "resources/footer.php";
|
// require_once "resources/footer.php";
|
||||||
|
|
||||||
?>
|
?>
|
||||||
Reference in New Issue
Block a user