Fix the footer in popup window to show the current sfiab version instead of debug info

This commit is contained in:
justin 2006-03-28 21:41:51 +00:00
parent cfd6fdf637
commit cb280ebc1f

View File

@ -524,7 +524,16 @@ function send_popup_footer()
<br />
<br />
<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>
</body>