From 9139fa8926b79116c5024a7b29df5d081f5a9cd8 Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Thu, 4 Feb 2010 10:31:38 -0500 Subject: [PATCH] List all applications, not just active ones (rsalmon (at) mbpgroup (dot) com, Bug #8846) --- horde/bin/db_migrate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/bin/db_migrate b/horde/bin/db_migrate index 9eca15020..15d1b0409 100755 --- a/horde/bin/db_migrate +++ b/horde/bin/db_migrate @@ -23,7 +23,7 @@ if (empty($args[0])) { $cli->fatal("An application argument is required"); } $app = $args[0]; -if (!in_array($app, $GLOBALS['registry']->listApps())) { +if (!in_array($app, $GLOBALS['registry']->listApps('inactive', 'hidden', 'notoolbar', 'heading', 'block', 'admin', 'active'))) { $cli->fatal("$app is not a configured Horde application"); } $action = 'up'; -- 2.11.0