inc/i18n.inc.php
author rejo
Tue, 05 Jun 2007 22:40:47 +0000
changeset 15 305cee3b388d
parent 13 2ff220cfde13
child 47 ae140472d97c
permissions -rw-r--r--
[feladat @ 62] Bugfix. In list_zones.php with no domains created, get_domains will return -1, count() will not be 0, as all_doms contains one element. Similar problem in existed in list_supermasters.php.

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

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

?>