List all applications, not just active ones (rsalmon (at) mbpgroup (dot) com, Bug...
authorChuck Hagenbuch <chuck@horde.org>
Thu, 4 Feb 2010 15:31:38 +0000 (10:31 -0500)
committerChuck Hagenbuch <chuck@horde.org>
Thu, 4 Feb 2010 15:31:38 +0000 (10:31 -0500)
horde/bin/db_migrate

index 9eca150..15d1b04 100755 (executable)
@@ -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';