|
From: Markus P. <mar...@us...> - 2005-04-16 18:24:17
|
Update of /cvsroot/mxbb/core/install/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5014 Modified Files: template.php Log Message: Fix template class required by the installer. It now calls mx_realpath, instead of phpbb_realpath. =:-o Index: template.php =================================================================== RCS file: /cvsroot/mxbb/core/install/includes/template.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** template.php 22 Mar 2005 00:27:23 -0000 1.1 --- template.php 16 Apr 2005 18:23:58 -0000 1.2 *************** *** 231,235 **** if (substr($filename, 0, 1) != '/') { ! $filename = ($rp_filename = phpbb_realpath($this->root . '/' . $filename)) ? $rp_filename : $filename; } --- 231,235 ---- if (substr($filename, 0, 1) != '/') { ! $filename = ($rp_filename = mx_realpath($this->root . '/' . $filename)) ? $rp_filename : $filename; } *************** *** 476,478 **** } ! ?> --- 476,478 ---- } ! ?> \ No newline at end of file |