From f330700092d80f2a247656d07e65443ef22965f9 Mon Sep 17 00:00:00 2001 From: nuxsmin Date: Mon, 13 Jul 2015 02:09:43 +0200 Subject: [PATCH] * [FIX] Fixed actions access check behaviour on tabbed results. --- inc/Controller.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/Controller.class.php b/inc/Controller.class.php index 2bdbb1c9..c054f8f2 100644 --- a/inc/Controller.class.php +++ b/inc/Controller.class.php @@ -137,7 +137,7 @@ abstract class Controller protected function checkAccess() { if (!\SP\Acl::checkUserAccess($this->_action)) { - $this->showError(self::ERR_PAGE_NO_PERMISSION); +// $this->showError(self::ERR_PAGE_NO_PERMISSION); return false; }