mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
"some (not-required, so no header update neccessary) updates for the header template"
This commit is contained in:
parent
86368a1903
commit
c906d34880
@ -48,10 +48,10 @@
|
||||
$GLOBALS['egw_info']['server']['db_persistent'] = {DB_PERSISTENT};
|
||||
|
||||
/*
|
||||
** eGroupWare can handle session management using the database or
|
||||
** eGroupWare can handle session management using the database or
|
||||
** the session support built into PHP4 which usually gives better
|
||||
** performance.
|
||||
** Your choices are 'db' or 'php4'
|
||||
** performance.
|
||||
** Your choices are 'db', 'php4' or 'php4-restore'
|
||||
*/
|
||||
$GLOBALS['egw_info']['server']['sessions_type'] = '{SESSIONS_TYPE}';
|
||||
|
||||
@ -79,7 +79,7 @@
|
||||
else
|
||||
{
|
||||
// allow caching by browser
|
||||
session_cache_limiter(PHP_VERSION >= 4.2 ? 'private_no_expire' : 'private');
|
||||
session_cache_limiter('private_no_expire');
|
||||
}
|
||||
|
||||
/* debugging settings */
|
||||
@ -90,12 +90,7 @@
|
||||
define('DEBUG_OUTPUT', 2); /* 1 = screen, 2 = DB. For both use 3. */
|
||||
define('DEBUG_TIMER', False);
|
||||
|
||||
function perfgetmicrotime()
|
||||
{
|
||||
list($usec, $sec) = explode(' ',microtime());
|
||||
return ((float)$usec + (float)$sec);
|
||||
}
|
||||
$GLOBALS['egw_info']['flags']['page_start_time'] = perfgetmicrotime();
|
||||
$GLOBALS['egw_info']['flags']['page_start_time'] = microtime(true);
|
||||
|
||||
/**************************************************************************\
|
||||
* Do not edit these lines *
|
||||
|
Loading…
Reference in New Issue
Block a user