From: janw Date: Fri, 1 Feb 2008 12:47:22 +0000 (+0000) Subject: Fixed smarty error. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4346a72376ba78ab41e6e2d6fae0730e0ce1105e;p=gosa.git Fixed smarty error. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8719 594d385d-05f5-0310-b6e9-bd551577e9d8 --- 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); }