inc/i18n.inc.php
author rejo
Tue, 05 Jun 2007 23:12:23 +0000
changeset 16 79b09e1e2985
parent 13 2ff220cfde13
child 47 ae140472d97c
permissions -rw-r--r--
[feladat @ 63] Bugfix. The number of arguments for the function validate_input() in record.inc.php and dns.inc.php was different, causing a variables to be validated incorrectly.

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

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

?>