Skip to content

Commit

Permalink
Dev: allow admin template to adapt style for super admin permission
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnoulle committed Mar 19, 2013
1 parent 970306e commit fd9d738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/views/admin/user/setuserpermissions.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
foreach($aBasePermissions as $sPermissionKey=>$aCRUDPermissions)
{ ?>
<tr><td><img src='<?php echo $sImageURL.$aCRUDPermissions['img'];?>_30.png' alt='<?php echo $aCRUDPermissions['description'];?>'/></td>
<td><?php if ($sPermissionKey=='global_superadmin') {?> <span style='font-weight:bold'> <?php }; echo $aCRUDPermissions['title']; if ($sPermissionKey=='global_superadmin') {?> </span> <?php };?></td>
<td><?php if ($sPermissionKey=='global_superadmin') {?> <strong class='warning'> <?php }; echo $aCRUDPermissions['title']; if ($sPermissionKey=='global_superadmin') {?> </span> <?php };?></td>
<td><input type="checkbox" class="markrow" id='all_<?php echo $sPermissionKey;?>' name='all_<?php echo $sPermissionKey;?>' /></td>
<?php
foreach ($aCRUDPermissions as $sCRUDKey=>$CRUDValue)
Expand Down

0 comments on commit fd9d738

Please sign in to comment.