|
From: Jon O. <jon...@us...> - 2007-05-05 20:40:54
|
Update of /cvsroot/mxbb/core/install/includes
In directory sc8-pr-cvs16:/tmp/cvs-serv2311/includes
Modified Files:
template.php
Log Message:
Updated header...
Index: template.php
===================================================================
RCS file: /cvsroot/mxbb/core/install/includes/template.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** template.php 16 Apr 2005 18:23:58 -0000 1.2
--- template.php 5 May 2007 20:40:26 -0000 1.3
***************
*** 1,30 ****
<?php
- /***************************************************************************
- * template.php
- * -------------------
- * begin : Saturday, Feb 13, 2001
- * copyright : (C) 2001 The phpBB Group
- * email : su...@ph...
- *
- * $Id$
- *
- *
- ***************************************************************************/
-
- /***************************************************************************
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- ***************************************************************************/
-
/**
! * Template class. By Nathan Codding of the phpBB group.
! * The interface was originally inspired by PHPLib templates,
! * and the template file formats are quite similar.
! *
! */
class Template {
--- 1,12 ----
<?php
/**
! *
! * @package mxBB Installation
! * @version $Id$
! * @copyright (c) 2002-2006 mxBB Project Team
! * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2
! * @link http://www.mxbb.net
! *
! */
class Template {
***************
*** 406,410 ****
else
{
! $code_lines[$i] = '$' . $retvar . '.= \'' . $code_lines[$i] . '\' . "\\n";';
}
}
--- 388,392 ----
else
{
! $code_lines[$i] = '$' . $retvar . '.= \'' . $code_lines[$i] . '\' . "\\n";';
}
}
|