Code

updated tempkate references
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 5 Jun 2008 08:56:53 +0000 (08:56 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 5 Jun 2008 08:56:53 +0000 (08:56 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11233 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpGroup.inc
gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpPool.inc
gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpSharedNetwork.inc
gosa-plugins/dhcp/admin/systems/services/dhcp/class_dhcpSubnet.inc

index ad7ed984263a09df28ff0c2cda2a96e8d51e12ca..8e92b5ce00b72a18f36c5b0cd91edf242a1a7b1c 100644 (file)
@@ -35,7 +35,7 @@ class dhcpGroup extends dhcpPlugin
     $smarty->assign("cn", $this->cn);
 
     /* Show main page */
-    $display= $smarty->fetch (get_template_path('dhcp_group.tpl', TRUE)).$this->network->execute();
+    $display= $smarty->fetch (get_template_path('dhcp_group.tpl', TRUE, dirname(__FILE__))).$this->network->execute();
 
     /* Merge arrays for advanced view */
     $this->fix_options();
index 40c2d78903f0b3689e14c6f3b2f20c4a75cd67f3..0de8a868272c9e7bcbfac83b772cdf2db17286f9 100644 (file)
@@ -50,7 +50,7 @@ class dhcpPool extends dhcpPlugin
     $smarty->assign("range_stop", $this->range_stop);
 
     /* Show main page */
-    $display= $smarty->fetch(get_template_path('dhcp_pool.tpl', TRUE)).$this->network->execute();
+    $display= $smarty->fetch(get_template_path('dhcp_pool.tpl', TRUE, dirname(__FILE__))).$this->network->execute();
 
     /* Merge arrays for advanced view */
     $this->fix_options();
index c521b30487569ed59ac6a46186683754daa834c9..f51be78dcc7385d02791932e2946089f00e03634 100644 (file)
@@ -68,7 +68,7 @@ class dhcpSharedNetwork extends dhcpPlugin
     }
 
     /* Show main page */
-    $display= $smarty->fetch(get_template_path('dhcp_sharedNetwork.tpl', TRUE)).$this->network->execute();
+    $display= $smarty->fetch(get_template_path('dhcp_sharedNetwork.tpl', TRUE,dirname(__FILE__))).$this->network->execute();
 
     /* Merge arrays for advanced view */
     $this->fix_options();
index 04b9ceb8035af21bc79d3d41ac956dc1972cef9a..18c02eced427c502c1932a58768f0121c89fbf2c 100644 (file)
@@ -69,7 +69,7 @@ class dhcpSubnet extends dhcpPlugin
     $smarty->assign("range_stop", $this->range_stop);
 
     /* Show main page */
-    $display= $smarty->fetch(get_template_path('dhcp_subnet.tpl', TRUE)).$this->network->execute();
+    $display= $smarty->fetch(get_template_path('dhcp_subnet.tpl', TRUE, dirname(__FILE__))).$this->network->execute();
 
     /* Merge arrays for advanced view */
     $this->fix_options();