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

pindaman’s picture

Assigned: Unassigned » pindaman
Status: Active » Fixed

fixed 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...

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.