forked from science-ation/science-ation
Fix the footer in popup window to show the current sfiab version instead of debug info
This commit is contained in:
parent
cfd6fdf637
commit
cb280ebc1f
@ -524,7 +524,16 @@ function send_popup_footer()
|
|||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<? print_r($_SESSION); ?>
|
<?
|
||||||
|
global $config;
|
||||||
|
$lastdigit=$config['version'][strlen($config['version'])-1];
|
||||||
|
if($lastdigit%2!=0)
|
||||||
|
{
|
||||||
|
echo "DEBUG:";
|
||||||
|
print_r($_SESSION);
|
||||||
|
}
|
||||||
|
echo "SFIAB Version ".$config['version'];
|
||||||
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user