|
From: OryNider <ory...@us...> - 2008-03-24 13:17:26
|
Update of /cvsroot/mxbb/mx_phpbb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12345 Modified Files: forum_hack.php Log Message: $code = str_replace('<a href=\"bin', '<a href=\"'.$phpbb_root_path.'bin', $code); Index: forum_hack.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/includes/forum_hack.php,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** forum_hack.php 29 Feb 2008 14:56:56 -0000 1.51 --- forum_hack.php 24 Mar 2008 13:15:49 -0000 1.52 *************** *** 1771,1774 **** --- 1771,1775 ---- $code = str_replace('<a href=\"modcp', '<a href=\"'.$phpbb_root_path.'modcp', $code); $code = str_replace('<a href=\"viewtopic', '<a href=\"'.$phpbb_root_path.'viewtopic', $code); + $code = str_replace('<a href=\"bin', '<a href=\"'.$phpbb_root_path.'bin', $code); $code = str_replace('$temp_url = "modcp.', '$temp_url = "' . $phpbb_root_path . 'modcp.', $code); $code = str_replace('$temp_url = "posting.', '$temp_url = "' . $phpbb_root_path . 'posting.', $code); |