From 43af75da935a3217168cdeb32679f0c95e9352c9 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 17 Feb 2015 06:23:35 -0500 Subject: [PATCH] [SIGNED OFF] Bug 13473 - Plugins fail When trying to execute or configure the plugin on 3.18 I got: Template process failed: file error - doc-head-open.inc: not found at /usr/share/koha/lib/C4/Templates.pm line 129. Test Plan: 1) Install the Kitchen Sink plugin 2) Go to the configuration page of the plugin 3) Note the template processing error 4) Apply this patch 5) Refresh the page 6) Note the page now loads Signed-off-by: Nick --- C4/Templates.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/C4/Templates.pm b/C4/Templates.pm index 5a5cbd0..52a7229 100644 --- a/C4/Templates.pm +++ b/C4/Templates.pm @@ -264,6 +264,10 @@ sub themelanguage { return ( $theme, 'en', uniq( \@themes ) ); } } + # tmpl is a full path, so this is a template for a plugin + if ( $tmpl =~ /^\// && -e $tmpl ) { + return ( $themes[0], $lang, uniq( \@themes ) ); + } } -- 1.7.10.4