瀏覽代碼

remove unneeded default which had a horrible backslash in a path

Thijs Kinkhorst 19 年之前
父節點
當前提交
52b7f27fa0
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      class/template/template.class.php

+ 3 - 3
class/template/template.class.php

@@ -40,14 +40,14 @@ class Template
    *
    *
    * @var string
    * @var string
    */
    */
-  var $template_dir = 'templates\default';
+  var $template_dir = '';
 
 
   /**
   /**
    * Constructor
    * Constructor
    *
    *
    * @param string $sTplDir where the template set is located
    * @param string $sTplDir where the template set is located
    */
    */
-  function Template($sTplDir = 'templates\default') {
+  function Template($sTplDir) {
        $this->template_dir = $sTplDir;
        $this->template_dir = $sTplDir;
   }
   }
 
 
@@ -185,4 +185,4 @@ class Template
 
 
 }
 }
 
 
-?>
+?>