From: Chuck Hagenbuch Date: Thu, 4 Feb 2010 15:31:38 +0000 (-0500) Subject: List all applications, not just active ones (rsalmon (at) mbpgroup (dot) com, Bug... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9139fa8926b79116c5024a7b29df5d081f5a9cd8;p=horde.git List all applications, not just active ones (rsalmon (at) mbpgroup (dot) com, Bug #8846) --- 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';