define('SERVER_URL', "http://www.mxchange.org");
// This current patch level
-define('CURR_SVN_REVISION', "529");
+define('CURR_SVN_REVISION', "530");
// Take a prime number which is long (if you know a longer one please try it out!)
define('_PRIME', 591623);
// Clear output buffer for later output
ob_end_clean();
+ // Send HTTP header
+ header("HTTP/1.1 200");
+
+ // Used later
+ $now = gmdate('D, d M Y H:i:s') . ' GMT';
+
+ // General headers for no caching
+ header("Expired: " . $now); // RFC2616 - Section 14.21
+ header("Last-Modified: " . $now);
+ header("Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0"); // HTTP/1.1
+ header("Pragma: no-cache"); // HTTP/1.0
+ header("Connection: Close");
+
// Extension "rewrite" installed?
if ((EXT_IS_ACTIVE("rewrite")) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
$OUTPUT = REWRITE_LINKS($OUTPUT);
}
// Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+// In Opera browsers the menu is being displayed double: ADD_DESCR("admin", __FILE__);
// Otherwise load include file 'overview-inc' (old standard overview page)
require_once(PATH."inc/modules/admin/overview-inc.php");