Browse Source

Avoid unnecessary access call

pull/577/head
Rosie Le Faive 10 years ago
parent
commit
3900ae5e1d
  1. 10
      islandora.module

10
islandora.module

@ -663,7 +663,7 @@ function islandora_print_object(AbstractObject $object) {
return theme('islandora_object_print', array('object' => $object)); return theme('islandora_object_print', array('object' => $object));
} }
/** /**
* View print tab access. * View print tab access.
* *
* Configurable option in islandora configuration. * Configurable option in islandora configuration.
@ -681,11 +681,11 @@ function islandora_print_object(AbstractObject $object) {
* configuraton. * configuraton.
*/ */
function islandora_print_object_access($op, $object) { function islandora_print_object_access($op, $object) {
$access = islandora_object_access($op, $object); if (!variable_get('islandora_show_print_option', FALSE)) {
if ($access && variable_get('islandora_show_print_option', FALSE)) { return FALSE;
return $access;
} }
return FALSE; $access = islandora_object_access($op, $object);
return $access;
} }
/** /**

Loading…
Cancel
Save