forked from science-ation/science-ation
If there's less than 2 conferences (specifically, 1 conference) then dont show the conference selector in the header
This commit is contained in:
parent
673b0b51f8
commit
8f17e80169
@ -166,23 +166,22 @@ if(isset($_SESSION['roles']) && $_SESSION['username']) {
|
|||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<div id="header-conferences">
|
|
||||||
<?
|
<?
|
||||||
$q=mysql_query("SELECT * FROM conferences WHERE status='running' ORDER BY name");
|
$q=mysql_query("SELECT * FROM conferences WHERE status='running' ORDER BY name");
|
||||||
if(mysql_num_rows($q)) {
|
if(mysql_num_rows($q)>1) {
|
||||||
echo "<ul class=\"conferencenav\">";
|
echo " <div id=\"header-conferences\">\n";
|
||||||
|
echo " <ul class=\"conferencenav\">";
|
||||||
while($r=mysql_fetch_object($q)) {
|
while($r=mysql_fetch_object($q)) {
|
||||||
if($_SESSION['conferences_id']==$r->id)
|
if($_SESSION['conferences_id']==$r->id)
|
||||||
$cl="class=\"selected\"";
|
$cl="class=\"selected\"";
|
||||||
else
|
else
|
||||||
$cl="";
|
$cl="";
|
||||||
echo "<li $cl><a $cl href=\"{$config['SFIABDIRECTORY']}/user_login.php?action=switchconference&switchconference=$r->id\">$r->name</a></li>\n";
|
echo " <li $cl><a $cl href=\"{$config['SFIABDIRECTORY']}/user_login.php?action=switchconference&switchconference=$r->id\">$r->name</a></li>\n";
|
||||||
}
|
}
|
||||||
echo "</ul>\n";
|
echo " </ul>\n";
|
||||||
|
echo " </div>\n";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user