
Re: Block Permissions Error
Some times ago I've already discussed about this.
First of all: Moderators should not see the blocks for guests only... check again.
In my opinion ADMINS should see all the things in the site even if for GUESTS only.
If you don't like this feature...
OPEN
functions_portal.php
FIND
case ADMIN:
$bview = '(0,1,2,3,4)';
$append = '01234';
break;
REPLACE WITH
case ADMIN:
$bview = '(0,2,3,4)';
$append = '0234';
break;
Try and let me know.