egroupware_official/phpgwapi/inc/class.vfs.inc.php

10 lines
310 B
PHP
Raw Normal View History

<?php
2001-09-23 21:23:49 +02:00
if (empty ($GLOBALS['phpgw_info']['server']['file_repository']))
{
$GLOBALS['phpgw_info']['server']['file_repository'] = 'sql';
}
2003-02-17 20:35:52 +01:00
include (PHPGW_API_INC . '/class.vfs_shared.inc.php');
2001-09-23 21:23:49 +02:00
include (PHPGW_API_INC . '/class.vfs_' . $GLOBALS['phpgw_info']['server']['file_repository'] . '.inc.php');
?>