./beg.php:165: // @TODO Opps, what is missing here???
./birthday_confirm.php:95: // @TODO Try to rewrite the following unset()
./inc/autopurge/purge-inact.php:57: // @TODO Rewrite these if() blocks to a filter
+./inc/cache/config-local.php:126:// @TODO Rewrite the following three constants, somehow...
./inc/classes/cachesystem.class.php:474: // @TODO Add support for more types which break in last else-block
./inc/config-functions.php:141: // @TODO Make this all better... :-/
./inc/expression-functions.php:166:// @TODO FILTER_COMPILE_CONFIG does not handle call-back functions so we handle it here again
setConfigEntry('_DB_TYPE', 'mysql3');
// Include more
- foreach (array('inc/db/lib.php','inc/databases.php','inc/session.php','inc/versions.php','inc/install-functions.php','inc/load_config.php') as $inc) {
+ foreach (array('db/lib','databases','session','versions','install-functions','load_config','load_cache') as $inc) {
// Load the include
- loadIncludeOnce($inc);
+ loadIncludeOnce('inc/' . $inc . '.php');
} // END - foreach
-
- // Load cache
- loadIncludeOnce('inc/load_cache.php');
}
// Handle fatal errors
// Check wether we are installing
function isInstalling () {
// Determine wether we are installing
- if (!isset($GLOBALS[__FUNCTION__])) {
+ if (!isset($GLOBALS['mailer_installing'])) {
// Check URL (css.php/js.php need this)
- $GLOBALS[__FUNCTION__] = isGetRequestParameterSet('installing');
+ $GLOBALS['mailer_installing'] = isGetRequestParameterSet('installing');
} // END - if
// Return result
- return $GLOBALS[__FUNCTION__];
+ return $GLOBALS['mailer_installing'];
}
// Check wether this script is installed