! -> Note
$ -> Affected files
+23-May-2008 Janusz Dobrowolski
+! Include file order / error handling order fixed once again.
+$ /includes/main.inc
+ /includes/session.inc
+
23-May-2008 Joe Hunt
! Moved menu-system from header.inc/footer.inc to renderer.php for relevant theme. Fixed frontaccounting.php to get the
correct renderer.php.
/themes/default/renderer.php
/themes/cool/renderer.php
/themes/aqua/renderer.php
+
+22-May-2008 Janusz Dobrowolski
+! Error handler switching moved to session.inc for early error catching
+$ /includes/main.inc
+ /includes/session.inc
+! Cosmetic cleanup
+ /js/utils.js
18-May-2008 Janusz Dobrowolski
# Added explicit ob_end_flush() on shutdown needed for php5
include_once($path_to_root . "/includes/lang/language.php");
include_once($path_to_root . "/config_db.php");
include_once($path_to_root . "/config.php");
+ include_once($path_to_root . "/includes/ajax.inc");
+ $Ajax =& new Ajax();
-
- include_once($path_to_root . "/includes/main.inc");
+ include_once($path_to_root . "/includes/main.inc");
//----------------------------------------------------------------------------------------
if (!isset($_POST["user_name_entry_field"]) or $_POST["user_name_entry_field"] == "")
{
include($path_to_root . "/access/login.php");
+ $Ajax->redirect($path_to_root . "/access/login.php");
exit;
}
}
- include_once("ajax.inc");
- $Ajax =& new Ajax();
+ include_once($path_to_root . "/includes/ui/ui_msgs.inc");
// intercept all output to destroy it in case of ajax call
register_shutdown_function('ob_end_flush');
ob_start('output_html',0);