From b2f0d561c69cee4c57d0babb3c173c8c54414797 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 14 Mar 2006 11:20:42 +0000 Subject: [PATCH] fixed problem reported by Christian Vierkant on the developers list: group-id's in the wiki get not changed if updating direct from 1.0.0.xxx --- phpgwapi/setup/tables_update_1_0.inc.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/phpgwapi/setup/tables_update_1_0.inc.php b/phpgwapi/setup/tables_update_1_0.inc.php index 25dfc02405..c0aab8b3d0 100644 --- a/phpgwapi/setup/tables_update_1_0.inc.php +++ b/phpgwapi/setup/tables_update_1_0.inc.php @@ -970,8 +970,13 @@ array('egw_acl','acl_account'), array('egw_accounts','account_primary_group',"account_type='u'"), array('egw_cal_user','cal_user_id',"cal_user_type='u'"), + // adding the old name, as the rename might have not been done (api upgrades run befor app ones) + array('phpgw_cal_user','cal_user_id',"cal_user_type='u'"), array('egw_wiki_pages','wiki_readable',true), array('egw_wiki_pages','wiki_writable',true), + // adding the old name, as the rename might have not been done (api upgrades run befor app ones) + array('phpgw_wiki_pages','wiki_readable',true), + array('phpgw_wiki_pages','wiki_writable',true), array('egw_vfs','vfs_owner_id'), array('egw_vfs','vfs_createdby_id'), ) as $data)