mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 08:38:54 +01:00
Updates needed for phpwebhosting -> filemanager name change
This commit is contained in:
parent
e8557e47dd
commit
71ec2f0197
@ -720,7 +720,7 @@
|
|||||||
'projects' => True,
|
'projects' => True,
|
||||||
'phonelog' => True,
|
'phonelog' => True,
|
||||||
'infolog' => True,
|
'infolog' => True,
|
||||||
'phpwebhosting' => True
|
'filemanager' => True
|
||||||
);
|
);
|
||||||
|
|
||||||
$sbox = createobject('phpgwapi.sbox');
|
$sbox = createobject('phpgwapi.sbox');
|
||||||
|
@ -67,7 +67,6 @@
|
|||||||
$co_modules[] = 'phpgwapi';
|
$co_modules[] = 'phpgwapi';
|
||||||
$co_modules[] = 'phpgwnetsaint';
|
$co_modules[] = 'phpgwnetsaint';
|
||||||
$co_modules[] = 'phpsysinfo';
|
$co_modules[] = 'phpsysinfo';
|
||||||
$co_modules[] = 'phpwebhosting';
|
|
||||||
$co_modules[] = 'polls';
|
$co_modules[] = 'polls';
|
||||||
$co_modules[] = 'preferences';
|
$co_modules[] = 'preferences';
|
||||||
$co_modules[] = 'projects';
|
$co_modules[] = 'projects';
|
||||||
|
@ -65,7 +65,6 @@
|
|||||||
'phpgwapi',
|
'phpgwapi',
|
||||||
'phpgwnetsaint',
|
'phpgwnetsaint',
|
||||||
'phpsysinfo',
|
'phpsysinfo',
|
||||||
'phpwebhosting',
|
|
||||||
'polls',
|
'polls',
|
||||||
'preferences',
|
'preferences',
|
||||||
'projects',
|
'projects',
|
||||||
|
@ -337,7 +337,7 @@
|
|||||||
'email',
|
'email',
|
||||||
'notes',
|
'notes',
|
||||||
'todo',
|
'todo',
|
||||||
'phpwebhosting',
|
'filemanager',
|
||||||
'manual'
|
'manual'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -746,7 +746,7 @@
|
|||||||
'email',
|
'email',
|
||||||
'notes',
|
'notes',
|
||||||
'todo',
|
'todo',
|
||||||
'phpwebhosting',
|
'filemanager',
|
||||||
'manual'
|
'manual'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -376,7 +376,7 @@
|
|||||||
'email',
|
'email',
|
||||||
'notes',
|
'notes',
|
||||||
'todo',
|
'todo',
|
||||||
'phpwebhosting',
|
'filemanager',
|
||||||
'manual'
|
'manual'
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -431,4 +431,4 @@
|
|||||||
}
|
}
|
||||||
/*!
|
/*!
|
||||||
@class_end accounts
|
@class_end accounts
|
||||||
*/
|
*/
|
||||||
|
@ -152,7 +152,7 @@
|
|||||||
|
|
||||||
/* Group perms for the default group */
|
/* Group perms for the default group */
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('addressbook','run'," . $defaultgroupid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('addressbook','run'," . $defaultgroupid . ", 1)");
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('phpwebhosting','run'," . $defaultgroupid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('filemanager','run'," . $defaultgroupid . ", 1)");
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('calendar','run'," . $defaultgroupid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('calendar','run'," . $defaultgroupid . ", 1)");
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('email','run'," . $defaultgroupid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('email','run'," . $defaultgroupid . ", 1)");
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('notes','run'," . $defaultgroupid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('notes','run'," . $defaultgroupid . ", 1)");
|
||||||
@ -199,7 +199,7 @@
|
|||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('preferences','changepassword', " . $accountid . ",1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('preferences','changepassword', " . $accountid . ",1)");
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('admin','run'," . $accountid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('admin','run'," . $accountid . ", 1)");
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('addressbook','run'," . $accountid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('addressbook','run'," . $accountid . ", 1)");
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('phpwebhosting','run'," . $accountid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('filemanager','run'," . $accountid . ", 1)");
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('calendar','run'," . $accountid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('calendar','run'," . $accountid . ", 1)");
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('email','run'," . $accountid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('email','run'," . $accountid . ", 1)");
|
||||||
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('notes','run'," . $accountid . ", 1)");
|
$GLOBALS['phpgw_setup']->db->query("INSERT INTO phpgw_acl(acl_appname,acl_location,acl_account,acl_rights) VALUES('notes','run'," . $accountid . ", 1)");
|
||||||
|
Loading…
Reference in New Issue
Block a user