2012-06-18 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* index.php: Fixed global autorefresh bug.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6565 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2012-06-18 10:48:07 +00:00
parent d60ed8d98d
commit 509f6ff06e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-06-18 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* index.php: Fixed global autorefresh bug.
2012-06-18 Juan Manuel Ramon <juanmanuel.ramon@artica.es> 2012-06-18 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/functions_config.php * include/functions_config.php

View File

@ -100,7 +100,8 @@ if (!empty ($config["https"]) && empty ($_SERVER['HTTPS'])) {
$config["pure"] = (bool) get_parameter ("pure"); $config["pure"] = (bool) get_parameter ("pure");
// Auto Refresh page (can now be disabled anywhere in the script) // Auto Refresh page (can now be disabled anywhere in the script)
$config["refr"] = (int) get_parameter ("refr"); if (get_parameter ("refr"))
$config["refr"] = (int) get_parameter ("refr");
ob_start (); ob_start ();
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'."\n"; echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'."\n";