bikesandscooters wrote:I get this format of information after adding user.
The Problem is in "acp_add_user.php". There is a "." on the end of line 267 but it must be ";" !
Find:
$message .= sprintf($user->lang['CONTINUE_EDIT_USER'], '<a href="' . append_sid("{$phpbb_admin_path}index.$phpEx", 'i=users&mode=profile&u=' . $user_id) . '">', $data['new_username'], '</a>').
Replace with:
$message .= sprintf($user->lang['CONTINUE_EDIT_USER'], '<a href="' . append_sid("{$phpbb_admin_path}index.$phpEx", 'i=users&mode=profile&u=' . $user_id) . '">', $data['new_username'], '</a>');













