Code

Fixed smarty error.
authorjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 1 Feb 2008 12:47:22 +0000 (12:47 +0000)
committerjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 1 Feb 2008 12:47:22 +0000 (12:47 +0000)
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

index 9890931ea7ae3d477c07963729d2422783c6aee5..6febbd5684f45d4cc85c06f65f1a4f38965f9ae7 100644 (file)
@@ -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);
   }