From ac8a92cab1b2b787f2ce6664c8ea02e6fd78be39 Mon Sep 17 00:00:00 2001 From: MorganDawe Date: Thu, 18 Dec 2014 15:54:16 -0400 Subject: [PATCH] Changed parameter names. --- islandora.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/islandora.module b/islandora.module index 8821aff6..dfd9a53e 100644 --- a/islandora.module +++ b/islandora.module @@ -680,8 +680,8 @@ function islandora_print_object(AbstractObject $object) { * FALSE if 'islandora_show_print_option' is not selected in islandora * configuraton. */ -function islandora_print_object_access($one, $two) { - $access = islandora_object_access($one, $two); +function islandora_print_object_access($op, $object) { + $access = islandora_object_access($op, $object); if ($access && variable_get('islandora_show_print_option', FALSE)) { return $access; }