diff --git a/config/catdiv.php b/config/catdiv.php new file mode 100644 index 00000000..0e188e5c --- /dev/null +++ b/config/catdiv.php @@ -0,0 +1,10 @@ + + require("../common.inc.php"); + send_header("Configuration - Categories and Divisions"); + + if($_POST['action']=="save") + { + } + + send_footer(); +?> diff --git a/config/index.php b/config/index.php index 4ca49e89..03561f49 100644 --- a/config/index.php +++ b/config/index.php @@ -3,48 +3,8 @@ send_header("Configuration"); echo error(i18n("Note: this section will normally be password protected. It is left open for now for debugging and testing purposes")); - if($_POST['action']=="save") - { - if($_POST['specialconfig']) - { - foreach($_POST['specialconfig'] as $key=>$val) - { - mysql_query("UPDATE config SET val='".mysql_escape_string(stripslashes($val))."' WHERE year='0' AND var='$key'"); - } - } - if($_POST['saveconfig']) - { - foreach($_POST['saveconfig'] as $key=>$val) - { - mysql_query("UPDATE config SET val='".mysql_escape_string(stripslashes($val))."' WHERE year='".$config['FAIRYEAR']."' AND var='$key'"); - } - } - echo happy(i18n("Configuration successfully saved")); - - - } - $q=mysql_query("SELECT * FROM config WHERE year=0 ORDER BY var"); - echo "
"; + echo "Configuration Variables