From 3303a1664bf9c842bac2e9efec74d7a91ef5830d Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 23 Jun 2014 16:41:49 -0700 Subject: [PATCH] Minor, fix an undefined variable. --- .../PhabricatorDashboardPanelSearchQueryCustomField.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/applications/dashboard/customfield/PhabricatorDashboardPanelSearchQueryCustomField.php b/src/applications/dashboard/customfield/PhabricatorDashboardPanelSearchQueryCustomField.php index 65ec40c9be..7e31054269 100644 --- a/src/applications/dashboard/customfield/PhabricatorDashboardPanelSearchQueryCustomField.php +++ b/src/applications/dashboard/customfield/PhabricatorDashboardPanelSearchQueryCustomField.php @@ -20,6 +20,7 @@ final class PhabricatorDashboardPanelSearchQueryCustomField $value = $this->getFieldValue(); $queries = array(); + $seen = false; foreach ($engines as $engine_class => $engine) { $engine->setViewer($this->getViewer()); $engine_queries = $engine->loadEnabledNamedQueries();