diff --git a/committee_main.php b/committee_main.php index e4e9e1d5..bff234d1 100644 --- a/committee_main.php +++ b/committee_main.php @@ -37,7 +37,7 @@ echo "
"; echo ""; //need to know which conference we're managing for these - if(isset($_SESSION['conferenceid'])) { + if(isset($_SESSION['conferences_id'])) { echo " "; if(committee_auth_has_access('config')) { echo " "; diff --git a/common.inc.php b/common.inc.php index fa4fd6f9..c94bef41 100644 --- a/common.inc.php +++ b/common.inc.php @@ -202,10 +202,10 @@ if($config['SFIABDIRECTORY'] == '') { } session_start(); -if(!$_SESSION['conferenceid']) { +if(!$_SESSION['conferences_id']) { $q=mysql_query("SELECT * FROM conferences WHERE status='running' ORDER BY name LIMIT 1"); if($r=mysql_fetch_object($q)) { - $_SESSION['conferenceid']=$r->id; + $_SESSION['conferences_id']=$r->id; } else { echo "No conferences defined!"; @@ -219,12 +219,12 @@ if(isset($_GET['switchconference'])) { // echo "cid=$cid"; $q=mysql_query("SELECT * FROM conferences WHERE id='$cid' AND status='running'"); if($r=mysql_fetch_object($q)) { - $_SESSION['conferenceid']=$cid; + $_SESSION['conferences_id']=$cid; } } -if(intval($_SESSION['conferenceid'])>0) { - $q=mysql_query("SELECT * FROM conferences WHERE id='".$_SESSION['conferenceid']."'"); +if(intval($_SESSION['conferences_id'])>0) { + $q=mysql_query("SELECT * FROM conferences WHERE id='{$_SESSION['conferences_id']}'"); $conference=mysql_fetch_assoc($q); /* @@ -501,7 +501,7 @@ echo "";
".i18n($config['fairname']).""; } else { global $conference; @@ -516,7 +516,7 @@ if(!$_SESSION['conferenceid']) { if(mysql_num_rows($q)) { echo "
".theme_icon("configuration")."
".i18n("Conference Configuration")."