From 9db164d8c51dd18079af1702a224c5cc300dfffa Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Wed, 5 Aug 2009 15:49:56 -0400 Subject: [PATCH] fix parse error --- nag/lib/Api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nag/lib/Api.php b/nag/lib/Api.php index 5788a75fb..4e2a0150f 100644 --- a/nag/lib/Api.php +++ b/nag/lib/Api.php @@ -384,7 +384,7 @@ class Nag_Api extends Horde_Registry_Api if (is_null($tasklists)) { $tasklists = $GLOBALS['display_tasklists']; } - if (is_null($completed) || !isset($completedArray[$completed]) { + if (is_null($completed) || !isset($completedArray[$completed])) { $completed = $GLOBALS['prefs']->getValue('show_completed'); } else { $completed = $completedArray[$completed]; -- 2.11.0