Please can we have superuser access in casetracker_basic? Unable to see my new displays and themeing, I was.

No patch, it's one line here,

/**
* Implementation of hook_access().
*/
function casetracker_basic_case_access($op, $node) {
global $user;

+ if ($user->uid == 1) return TRUE;

switch ($op) {
case 'create':
return user_access('create cases');
...

etc.

Rob.

Comments

rcrowther’s picture

Title: Superuser acess in casetracker_basic » Superuser access in casetracker_basic