The admin user (with the user ID of 1)
Permalink 1 user found helpful
What a pitty! The admin user (or superuser) priviledge is not covered by the authorisation scheme in c5.7.
Solution: a small code modification allows a group "SuperUser" to take effect to authorise superuser facilities to any user.
Any chance to get this (or similar) into the next release?
Solution: a small code modification allows a group "SuperUser" to take effect to authorise superuser facilities to any user.
file /concrete/src/User/User.php 265,266c265 < $gid = Group::getByName("SuperUser"); < return $this->superUser || ( $gid !== null && $this->inGroup($gid) ); --- > return $this->superUser;
Any chance to get this (or similar) into the next release?
Changing Page-Type "Output" templates should be possible as Administrator, not only User #1.
Would be good to be in core and configurable, now i have to re-apply the patch each time C5 gets a Core Update.