Active
Project:
Case Tracker
Version:
6.x-1.0-beta8
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
25 Jul 2010 at 11:24 UTC
Updated:
25 Jul 2010 at 11:25 UTC
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
Comment #1
rcrowther commented