perfect solution thsi module:
But I want my admin user to be able to craete all content types on all sub-sites.
is this possible?
regards,
Pinda
perfect solution thsi module:
But I want my admin user to be able to craete all content types on all sub-sites.
is this possible?
regards,
Pinda
Comments
Comment #1
pindaman commentedfixed with a small hack of the module
6.x dev
function domain_content_types_access($type) {
global $_domain;
+ global $user;
2nd part
if (empty($types) ) {
return TRUE;
}
+ if ($user->uid == 1)
+ {
+ return TRUE;
+ }
it work for me...