Summary | db_migrate filtered appsFix |
Queue | Horde Base |
Queue Version | Git master |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | chuck (at) horde (dot) org |
Requester | rsalmon (at) mbpgroup (dot) com |
Created | 02/01/2010 (5633 days ago) |
Due | |
Updated | 02/10/2010 (5624 days ago) |
Assigned | |
Resolved | 02/04/2010 (5630 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Fix argument passing (
Bug #8846).http://git.horde.org/diff.php/horde/bin/db_migrate?rt=horde-git&r1=242acc9bf080088f01bfb84ef5ae66ab2efba642&r2=4bea67f7f2ab5f8a23133e9df157c7ebddf3c1ac
Summary ⇒ db_migrate filtered appsFix
Fix argument passing (
Bug #8846).http://git.horde.org/diff.php/horde/bin/db_migrate?rt=horde-git&r1=242acc9bf080088f01bfb84ef5ae66ab2efba642&r2=4bea67f7f2ab5f8a23133e9df157c7ebddf3c1ac
List all applications, not just active ones (rsalmon (at) mbpgroup
(dot) com,
Bug #8846)http://git.horde.org/diff.php/horde/bin/db_migrate?rt=horde-git&r1=c47b942008a20196a5bb01f72164e9e63019ec2c&r2=9139fa8926b79116c5024a7b29df5d081f5a9cd8
listApps(array('inactive', 'hidden', 'notoolbar', 'heading', 'block',
'admin', 'active'))
List all applications, not just active ones (rsalmon (at) mbpgroup
(dot) com,
Bug #8846)http://git.horde.org/diff.php/horde/bin/db_migrate?rt=horde-git&r1=c47b942008a20196a5bb01f72164e9e63019ec2c&r2=9139fa8926b79116c5024a7b29df5d081f5a9cd8
State ⇒ Resolved
Assigned to Chuck Hagenbuch
List all applications, not just active ones (rsalmon (at) mbpgroup
(dot) com,
Bug #8846)http://git.horde.org/diff.php/horde/bin/db_migrate?rt=horde-git&r1=c47b942008a20196a5bb01f72164e9e63019ec2c&r2=9139fa8926b79116c5024a7b29df5d081f5a9cd8
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ db_migrate filtered apps
Queue ⇒ Horde Base
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
the default filter $GLOBALS['registry']->listApps() is set to (
'notoolbar', 'active').
Quick fix :
- if (!in_array($app, $GLOBALS['registry']->listApps(array()))) {
+ if (!in_array($app, $GLOBALS['registry']->listApps(array('inactive',
'hidden', 'notoolbar', 'heading', 'block', 'admin', 'active')))) {
I don't know if you want to run db_migrate on apps with status = 'inactive'.