Another bug fix on conferences.php

This commit is contained in:
jacob 2011-12-20 15:40:17 +00:00
parent 01589a1518
commit b1d2fd76a6

View File

@ -134,7 +134,7 @@ if(array_key_exists('action', $_GET)){
case 'edit':
// give them an editor in which to modify an existing conference
$cid = intval($_POST['id']);
if(!$cid){
if($cid){
$conf = mysql_fetch_assoc(mysql_query("SELECT * FROM conferences WHERE id = $cid"));
if(is_array($conf)){
echo "<table>";