From 80f4428e80fe8a46fce87d713c3cc5d9bba8b218 Mon Sep 17 00:00:00 2001 From: Neil Blakey-Milner Date: Thu, 9 Feb 2006 09:56:25 +0000 Subject: [PATCH] Don't check for disabled anymore. --- lib/widgets/portlet.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/portlet.inc.php b/lib/widgets/portlet.inc.php index 81c1c66..a7327fa 100644 --- a/lib/widgets/portlet.inc.php +++ b/lib/widgets/portlet.inc.php @@ -78,7 +78,7 @@ class KTActionPortlet extends KTPortlet { foreach ($actions as $action) { $aInfo = $action->getInfo(); - if (($aInfo !== null) and ($aInfo["disabled"] === false)) { + if ($aInfo !== null) { if ($aInfo["name"] == $currentaction) { unset($aInfo["url"]); } -- libgit2 0.21.4