From 6deefef712b9f38a1fd5ad222cfa137a8c713d3c Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Mon, 3 May 2010 20:30:06 +0200 Subject: [PATCH] Fix constant. --- wicked/lib/Page/StandardPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wicked/lib/Page/StandardPage.php b/wicked/lib/Page/StandardPage.php index 349e2e01d..aa5185a65 100644 --- a/wicked/lib/Page/StandardPage.php +++ b/wicked/lib/Page/StandardPage.php @@ -141,7 +141,7 @@ class StandardPage extends Page { if (Horde_Auth::isAdmin()) { return true; } - if (($this->getPermissions() & PERMS_EDIT) == 0) { + if (($this->getPermissions() & Horde_Perms::EDIT) == 0) { return false; } break; -- 2.11.0