inc/i18n.inc.php
author rejo
Mon, 25 Jun 2007 20:57:22 +0000
changeset 25 576034a80ea8
parent 13 2ff220cfde13
child 47 ae140472d97c
permissions -rw-r--r--
[feladat @ 72] After a user had logged out, the menu bar was still shown until a reloading the login screen. [Fix: Peter Beernink]

<?
include_once("inc/config.inc.php");

$language = $LANG;
setlocale(LC_ALL, $language);
$gettext_domain = 'messages';
bindtextdomain($gettext_domain, "./locale");
textdomain($gettext_domain);

?>