From 4346a72376ba78ab41e6e2d6fae0730e0ce1105e Mon Sep 17 00:00:00 2001 From: janw Date: Fri, 1 Feb 2008 12:47:22 +0000 Subject: [PATCH] Fixed smarty error. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8719 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-plugins/dns/admin/systems/services/dns/class_servDNS.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gosa-plugins/dns/admin/systems/services/dns/class_servDNS.inc b/gosa-plugins/dns/admin/systems/services/dns/class_servDNS.inc index 9890931ea..6febbd568 100644 --- a/gosa-plugins/dns/admin/systems/services/dns/class_servDNS.inc +++ b/gosa-plugins/dns/admin/systems/services/dns/class_servDNS.inc @@ -157,7 +157,7 @@ class servdns extends goService $warning2 = _("The migration will be startet when you save this system. To cancel this action, use the cancel button below."); $smarty->assign("warning",$warning); $smarty->assign("warning2",$warning2); - return($smarty->fetch(get_template_path('servdns.tpl', TRUE))); + return($smarty->fetch(get_template_path('servdns.tpl', TRUE, dirname(__FILE__)))); } @@ -288,7 +288,7 @@ class servdns extends goService /* Display tempalte */ $smarty->assign("ZoneList",$ZoneList->DrawList()); - $display.= $smarty->fetch(get_template_path('servdns.tpl', TRUE)); + $display.= $smarty->fetch(get_template_path('servdns.tpl', TRUE, dirname(__FILE__))); return($display); } -- 2.30.2