|
From: Markus P. <mar...@us...> - 2005-03-21 22:10:35
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10752 Modified Files: template.php Log Message: Including phpBB version of the Template class. Index: template.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/template.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** template.php 21 Mar 2005 20:52:01 -0000 1.10 --- template.php 21 Mar 2005 22:10:25 -0000 1.11 *************** *** 22,25 **** --- 22,32 ---- */ + + // + // Including phpBB version of the Template class + // + include_once($phpbb_root_path . "includes/template.$phpEx"); + + class mx_Template extends Template { |