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 "
".theme_icon("configuration")." ".i18n("Conference Configuration")." | ";
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 "";