|
From: FlorinCB <ory...@us...> - 2008-06-13 03:58:27
|
Update of /cvsroot/mxbb/mx_phpbb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19528 Modified Files: forum_hack.php Log Message: I don't undested how the activation link was just partialy fixed. Index: forum_hack.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/includes/forum_hack.php,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** forum_hack.php 10 Jun 2008 02:16:16 -0000 1.57 --- forum_hack.php 13 Jun 2008 03:58:22 -0000 1.58 *************** *** 1876,1880 **** $code = str_replace('$board_config[\'avatar_gallery_path\']', '\''.$phpbb_root_path.'\' . $board_config[\'avatar_gallery_path\']', $code); $code = str_replace('$board_config[\'avatar_path\']', '\''.$phpbb_root_path.'\' . $board_config[\'avatar_path\']', $code); ! break; case 'includes/usercp_avatar': --- 1876,1883 ---- $code = str_replace('$board_config[\'avatar_gallery_path\']', '\''.$phpbb_root_path.'\' . $board_config[\'avatar_gallery_path\']', $code); $code = str_replace('$board_config[\'avatar_path\']', '\''.$phpbb_root_path.'\' . $board_config[\'avatar_path\']', $code); ! ! //This should fix the url when users try to activate the accont ! $code = str_replace('$server_url . \'?mode=activate&\'', 'PHPBB_URL .\'profile.\'.$phpEx.\'?mode=activate&\'', $code); ! break; case 'includes/usercp_avatar': |