when creating the superuser, make sure they get admin/config/super=Y

also fix the config/dates insert queries so they will work
This commit is contained in:
james 2005-06-07 20:22:25 +00:00
parent 7df9e6e444
commit ac3053318d

View File

@ -122,19 +122,19 @@ if($_POST['action']=="save")
{
//add the actual fair name, and just insert the defaults of everything else
if($r->var=="fairname")
mysql_query("INSERT INTO config (var,val,description,year) VALUES ('$r->var','".mysql_escape_string(stripslashes($_POST['fairname']))."','$r->description','".$_POST['fairyear']."'");
mysql_query("INSERT INTO config (var,val,description,year) VALUES ('$r->var','".mysql_escape_string(stripslashes($_POST['fairname']))."','$r->description','".$_POST['fairyear']."')");
else
mysql_query("INSERT INTO config (var,val,description,year) VALUES ('$r->var','$r->val','$r->description','".$_POST['fairyear']."'");
mysql_query("INSERT INTO config (var,val,description,year) VALUES ('$r->var','$r->val','$r->description','".$_POST['fairyear']."')");
}
//copy over the dates defautls
$q=mysql_query("SELECT * FROM dates WHERE year='-1'");
while($r=mysql_fetch_object($q))
{
mysql_query("INSERT INTO dates (date,name,description,year) VALUES ('$r->date','$r->name','$r->description','".$_POST['fairyear']."'");
mysql_query("INSERT INTO dates (date,name,description,year) VALUES ('$r->date','$r->name','$r->description','".$_POST['fairyear']."')");
}
echo "<b>Done!</b><br />";
echo "Creating superuser account...";
mysql_query("INSERT INTO committees_members (email,emailprivate,password) VALUES ('".$_POST['email']."','".$_POST['email']."','".$_POST['pass1']."')");
mysql_query("INSERT INTO committees_members (email,emailprivate,password,access_admin,access_config,access_super) VALUES ('".$_POST['email']."','".$_POST['email']."','".$_POST['pass1']."','Y','Y','Y')");
echo mysql_error();
echo "<b>Done!</b><br />";