Code

Fxied template loading
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 17 Jan 2008 13:19:53 +0000 (13:19 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 17 Jan 2008 13:19:53 +0000 (13:19 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8449 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/goto/admin/systems/goto/class_printGeneric.inc
gosa-plugins/goto/admin/systems/goto/class_terminalInfo.inc
gosa-plugins/goto/admin/systems/goto/class_workstationGeneric.inc

index 9eec1acaf323d9ca82040d16ff8b31c992dd7c84..c0223ebebf7a8740ea9234faf623cd40b9fbca2d 100644 (file)
@@ -561,7 +561,7 @@ class printgeneric extends plugin
       $smarty->assign("netconfig", "");
     }
 
-    return($display.$smarty->fetch (get_template_path('printer.tpl', TRUE)));
+    return($display.$smarty->fetch (get_template_path('printer.tpl', TRUE, dirname(__FILE__))));
   }
 
   function remove_from_parent()
index 0a21884d2b1fff0cb7cb66118d3c9ada49a7b0cb..314b5fe24ec417df6f18e4b2b66cc3fa10e32ee4 100644 (file)
@@ -227,7 +227,7 @@ class terminfo extends plugin
 
         $smarty->assign($val, $this->$val);
       }
-      $display= $smarty->fetch (get_template_path('info.tpl', TRUE));
+      $display= $smarty->fetch (get_template_path('info.tpl', TRUE, dirname(__FILE__)));
 
     return ($display);
   }
index 0f0f97a982b59974afb99bca93f5e1a5c7220e31..0b58f76678c800179c4416f8782660c06d602e34 100644 (file)
@@ -350,7 +350,7 @@ class workgeneric extends plugin
     $smarty->assign("netconfig", $str);
 
     /* Show main page */
-    return($smarty->fetch (get_template_path('workstation.tpl', TRUE)));
+    return($smarty->fetch (get_template_path('workstation.tpl', TRUE, dirname(__FILE__))));
   }
 
   function remove_from_parent()