From d60732119c95eeb27af0a79adec4fcfa6d9c966e Mon Sep 17 00:00:00 2001 From: Alex Arnaud Date: Thu, 22 Sep 2011 11:05:13 +0200 Subject: [PATCH] Bug 6755 follow up MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Use C4::Templates::_get_template_file instead od C4::Output::_get_template_file in preferences.pl Signed-off-by: Frédéric Demians Signed-off-by: Chris Cormack --- admin/preferences.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/preferences.pl b/admin/preferences.pl index b02251645e..055f69dc98 100755 --- a/admin/preferences.pl +++ b/admin/preferences.pl @@ -175,7 +175,7 @@ sub TransformPrefsToHTML { sub _get_pref_files { my ( $input, $open_files ) = @_; - my ( $htdocs, $theme, $lang, undef ) = C4::Output::_get_template_file( 'admin/preferences/admin.pref', 'intranet', $input ); + my ( $htdocs, $theme, $lang, undef ) = C4::Templates::_get_template_file( 'admin/preferences/admin.pref', 'intranet', $input ); my %results; -- 2.11.4.GIT