egroupware/phpgwapi/inc/class.translation.inc.php

8 lines
266 B
PHP
Raw Normal View History

<?php
2001-08-31 10:45:44 +02:00
if (empty($GLOBALS['phpgw_info']['server']['translation_system']))
{
$GLOBALS['phpgw_info']['server']['translation_system'] = 'sql';
}
include(PHPGW_API_INC.'/class.translation_' . $GLOBALS['phpgw_info']['server']['translation_system'].'.inc.php');
?>