remove unneeded default which had a horrible backslash in a path
[squirrelmail.git] / class / template / template.class.php
index e7e5175b38fc8acc5931c0b20a83044ea3f136e9..9d307b44b7f07a11f7fa997f472c196a22f0980a 100755 (executable)
@@ -1,8 +1,7 @@
 <?php
+
 /**
  * Copyright 2003, Paul James
- * Copyright (c) 2005 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This file contains some methods from the Smarty templating engine version
  * 2.5.0 by Monte Ohrt <monte@ispi.net> and Andrei Zmievski <andrei@php.net>.
@@ -10,6 +9,8 @@
  * The SquirrelMail (Foowd) template implementation.
  * Derived from the foowd template implementation and adapted
  * for squirrelmail
+ * @copyright &copy; 2005-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
  */
@@ -21,8 +22,8 @@
  * This class uses a similar API to Smarty.
  *
  * @author Paul James
- * @author Monte Ohrt <monte@ispi.net>
- * @author Andrei Zmievski <andrei@php.net>
+ * @author Monte Ohrt <monte at ispi.net>
+ * @author Andrei Zmievski <andrei at php.net>
  * @package squirrelmail
  */
 class Template
@@ -39,14 +40,14 @@ class Template
    *
    * @var string
    */
-  var $template_dir = 'templates\default';
+  var $template_dir = '';
 
   /**
    * Constructor
    *
    * @param string $sTplDir where the template set is located
    */
-  function Template($sTplDir = 'templates\default') {
+  function Template($sTplDir) {
        $this->template_dir = $sTplDir;
   }
 
@@ -184,4 +185,4 @@ class Template
 
 }
 
-?>
\ No newline at end of file
+?>