|
From: OryNider <ory...@us...> - 2008-02-22 23:53:20
|
Update of /cvsroot/mxbb/mx_phpbb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2402 Modified Files: forum_hack.php Log Message: merging was bad, this will fix it. Index: forum_hack.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/includes/forum_hack.php,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** forum_hack.php 22 Feb 2008 23:44:10 -0000 1.48 --- forum_hack.php 22 Feb 2008 23:53:15 -0000 1.49 *************** *** 1672,1675 **** --- 1672,1676 ---- include_once($phpbb_root_path . 'includes/functions_cash.'.$phpEx); + $template = new Template_plus($phpbb_root_path . 'templates/'. $theme['template_name']); } *************** *** 1843,1847 **** $code = preg_replace ("/phpbb_root_path = (.*)\;/", "phpbb_root_path = '" . $phpbb_root_path . "';", $code); $code = preg_replace ("/$template = (.*)\;/", "$template = '" . $template . "';", $code); - $template = new Template_plus($phpbb_root_path . 'templates/'. $theme['template_name']); break; --- 1844,1847 ---- |