summaryrefslogtreecommitdiffstats
path: root/frontends/php/sysmaps.php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/sysmaps.php')
-rw-r--r--frontends/php/sysmaps.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/php/sysmaps.php b/frontends/php/sysmaps.php
index 89ada333..db840693 100644
--- a/frontends/php/sysmaps.php
+++ b/frontends/php/sysmaps.php
@@ -57,7 +57,7 @@ include_once "include/page_header.php";
if(isset($_REQUEST["sysmapid"]))
{
- if(!sysmap_accessiable($_REQUEST["sysmapid"],PERM_READ_WRITE))
+ if(!sysmap_accessible($_REQUEST["sysmapid"],PERM_READ_WRITE))
access_deny();
$sysmap = DBfetch(DBselect("select * from sysmaps where sysmapid=".$_REQUEST["sysmapid"]));
@@ -130,7 +130,7 @@ include_once "include/page_header.php";
while($row=DBfetch($result))
{
- if(!sysmap_accessiable($row["sysmapid"],PERM_READ_WRITE)) continue;
+ if(!sysmap_accessible($row["sysmapid"],PERM_READ_WRITE)) continue;
$table->AddRow(array(
new CLink($row["name"], "sysmaps.php?form=update".