start(); } // handle the language preferences now $avail_langs = array( 'en_US' => 'English', # 'ru_RU' => 'Russian', # 'de_DE' => 'German', # 'fr_FR' => 'French', 'it_IT' => 'Italian', # 'fi_FI' => 'Finish', # 'es_ES' => 'Spanish', # 'nl_NL' => 'Dutch', 'sv_SE' => 'Swedish', ); include_once(APP_INC_PATH . 'class.language.php'); include_once(APP_INC_PATH . 'db_access.php'); include_once(APP_INC_PATH . 'class.auth.php'); include_once(APP_INC_PATH . 'class.misc.php'); // fix magic_quote_gpc'ed values if (get_magic_quotes_gpc()) { $_GET = Misc::dispelMagicQuotes($_GET); $_POST = Misc::dispelMagicQuotes($_POST); $_REQUEST = Misc::dispelMagicQuotes($_REQUEST); } Language::setup(); // set charset Header('Content-Type: text/html; charset=' . APP_CHARSET); /* vim: set expandtab tabstop=4 shiftwidth=4 encoding=utf-8: */