Make conference saving work again

This commit is contained in:
james 2010-12-07 19:26:39 +00:00
parent e278505bc0
commit 673b0b51f8

View File

@ -133,8 +133,8 @@ if(array_key_exists('action', $_GET)){
break;
case 'edit':
// give them an editor in which to modify an existing conference
$cid = $_POST['id'];
if(is_numeric($cid)){
$cid = intval($_POST['id']);
if(!$cid){
$conf = mysql_fetch_assoc(mysql_query("SELECT * FROM conferences WHERE id = $cid"));
if(is_array($conf)){
echo "<table>";
@ -162,12 +162,13 @@ if(array_key_exists('action', $_GET)){
break;
case 'save':
// save the new conference data for the conference that's being edited
$confId = $_POST['id'];
if(!is_numeric($confId)){
$confId = intval($_POST['id']);
if(!$confId) {
error_("invalid conference id");
}
else {
// verify that the specified conference already exists
$countRecord = mysql_fetch_assoc(mysql_query("SELECT COUNT(*) as tally FROM conferences WHERE id = $confId"), 0);
$countRecord = mysql_fetch_assoc(mysql_query("SELECT COUNT(*) as tally FROM conferences WHERE id = $confId"));
$tally = $countRecord['tally'];
if($tally == 1){
// ok, it's a valid conference id. Let's go ahead and update the data for it
@ -184,11 +185,12 @@ if(array_key_exists('action', $_GET)){
}else{
error_("nonexistant conference id");
}
}
break;
case 'delete':
// delete the specified conference
$confId = $_POST['id'];
if(!is_numeric($confId)){
$confId = intval($_POST['id']);
if(!$confId){
error_("invalid conference id");
}else{
mysql_query("UPDATE conferences set status='deleted' WHERE id = $confId");