From: Jan Schneider Date: Mon, 3 May 2010 18:30:06 +0000 (+0200) Subject: Fix constant. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6deefef712b9f38a1fd5ad222cfa137a8c713d3c;p=horde.git Fix constant. --- 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;