inc/i18n.inc.php
author rejo
Mon, 13 Aug 2007 22:05:06 +0000
changeset 40 ee5300058c9d
parent 13 2ff220cfde13
child 47 ae140472d97c
permissions -rw-r--r--
[feladat @ 87] Bugfix. With user level 5 or 10 and lots of zones without an owner, like slave zones that are inserted by a supermaster, the "list all zones" view was broken (not all zones shown, but "show page" and "show letters" were missing as well). Function zone_count matches zones and domains table, but users with level 5 or 10 are allowed to see zones without an entry in the zones table as well.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3
64525a2eb098 [feladat @ 4]
rejo
parents:
diff changeset
     1
<?
13
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
     2
include_once("inc/config.inc.php");
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
     3
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
     4
$language = $LANG;
3
64525a2eb098 [feladat @ 4]
rejo
parents:
diff changeset
     5
setlocale(LC_ALL, $language);
64525a2eb098 [feladat @ 4]
rejo
parents:
diff changeset
     6
$gettext_domain = 'messages';
64525a2eb098 [feladat @ 4]
rejo
parents:
diff changeset
     7
bindtextdomain($gettext_domain, "./locale");
64525a2eb098 [feladat @ 4]
rejo
parents:
diff changeset
     8
textdomain($gettext_domain);
13
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
     9
3
64525a2eb098 [feladat @ 4]
rejo
parents:
diff changeset
    10
?>