egroupware/phpgwapi/inc/class.sessions.inc.php

8 lines
244 B
PHP
Raw Normal View History

<?php
if (empty($GLOBALS['phpgw_info']['server']['sessions_type']))
2001-02-12 20:21:45 +01:00
{
$GLOBALS['phpgw_info']['server']['sessions_type'] = 'db';
2001-02-12 20:21:45 +01:00
}
include(PHPGW_API_INC.'/class.sessions_'.$GLOBALS['phpgw_info']['server']['sessions_type'].'.inc.php');
2001-02-07 23:25:57 +01:00
?>