mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
10 lines
310 B
PHP
10 lines
310 B
PHP
<?php
|
|
if (empty ($GLOBALS['phpgw_info']['server']['file_repository']))
|
|
{
|
|
$GLOBALS['phpgw_info']['server']['file_repository'] = 'sql';
|
|
}
|
|
|
|
include (PHPGW_API_INC . '/class.vfs_shared.inc.php');
|
|
include (PHPGW_API_INC . '/class.vfs_' . $GLOBALS['phpgw_info']['server']['file_repository'] . '.inc.php');
|
|
?>
|