index.php
author rejo
Tue, 10 Jul 2007 21:24:06 +0000
changeset 37 b785e54690ce
parent 13 2ff220cfde13
child 47 ae140472d97c
permissions -rw-r--r--
[feladat @ 84] Bugfix. The function zone_count() now also counts zones an owner has only partial access to, not just those zones the owner has full access to. This fixes just the count, the zones a user has partial access to are not (yet!) shown in the "list zones" page. Bugfix. In the zone listing the "edit" button is now show for users with access level 1. Untill now they were presented an overview of the zones they could change, but there was no link for them to actually edit the zone. Bugfix. Some of the buttons in the "edit zone" interface that are of no use to a user with access level 1 have been hidden. Bugfix. Make sure a user with access level 1 with only partial access to a zone cannot add new records to that zone. Only the zone owner should be able to add new record. Bugfix. If a user with access level 1 edits a record in a zone he has only partial access to, an error was shown because of call to a non- existing function in the PEAR:MDB2. This bug was most likely introduced while migrating from PEAR:DB to PEAR:MDB2. Bugfix. A user with access level 1 was able to delete all records of a zone he has only partial access to. Some additional checks have been added. Bugfix. If a user with accees level 1 has partial access to one or more zones starting with a certain character, but did not own at least one entire zone starting with the same character, the character wasn't clickable in the "list zone" page. Interface. If no record or zone id is given for delete_record.php or delete_domain.php, don't just die but echo a nice message. The i18n files have not yet been updated to reflect this change. Interface. If no master IP is given in delete_supermaster.php, don't just die but echo a nice message. The i18n files have not yet been updated to reflect this change. [All fixes by Peter Beernink.]
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     1
<?php
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     2
session_start();
6
9fcac40c1b0e [feladat @ 7]
rejo
parents: 4
diff changeset
     3
require_once("inc/i18n.inc.php");
1
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     4
require_once("inc/toolkit.inc.php");
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     5
include_once("inc/header.inc.php");
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
     6
?>
13
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
     7
   <h3><? echo _('Welcome'); ?>, <? echo $_SESSION["name"] ?></h3>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
     8
   <ul>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
     9
    <li><a href="search.php"><? echo _('Search zones or records'); ?></a></li>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    10
    <li><a href="list_zones.php"><? echo _('List all zones'); ?></a></li>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    11
<?
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    12
if (level(5))
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    13
{
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    14
?>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    15
    <li><a href="list_supermasters.php"><? echo _('List all supermasters'); ?></a></li>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    16
    <li><a href="add_zone_master.php"><? echo _('Add master zone'); ?></a></li>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    17
    <li><a href="add_zone_slave.php"><? echo _('Add slave zone'); ?></a></li>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    18
    <li><a href="add_supermaster.php"><? echo _('Add supermaster'); ?></a></li>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    19
<?
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    20
}
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    21
?>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    22
    <li><a href="change_password.php"><? echo _('Change password'); ?></a></li>
1
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    23
<?
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    24
if (level(10))
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    25
{
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    26
?>
13
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    27
    <li><a href="users.php"><? echo _('User administration'); ?></a></li>
1
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    28
<?
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    29
}
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    30
?>
13
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    31
    <li><a href="index.php?logout"><? echo _('Logout'); ?></a></li>
2ff220cfde13 [feladat @ 60]
rejo
parents: 8
diff changeset
    32
   </ul>
1
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    33
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    34
<?
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    35
include_once("inc/footer.inc.php");
58094faf794d [feladat @ 2]
rejo
parents:
diff changeset
    36
?>