From 535641fe03af5973825cc8c16577ff7ffa5855d3 Mon Sep 17 00:00:00 2001 From: Neil Mader Date: Wed, 12 Apr 2017 16:44:35 -0300 Subject: [PATCH] Changed hook_preprocess_HOOK() to template_preprocess_HOOK() --- theme/theme.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/theme.inc b/theme/theme.inc index 15d2c213..09caf863 100644 --- a/theme/theme.inc +++ b/theme/theme.inc @@ -170,9 +170,9 @@ function template_preprocess_islandora_default(&$variables) { } /** - * Implements hook_preprocess_theme(). + * Implements template_preprocess_theme(). */ -function islandora_preprocess_islandora_object_print(array &$variables) { +function template_preprocess_islandora_object_print(array &$variables) { // Apply the print CSS in non print context. $only_print_media = function($o) { return $o['media'] == 'print';