Bug tracker

This ticket has been moved to our new tracker. Open Ticket PHPBB3-196 now.

Unable to Select Member from Warnings Screen (fix completed in vcs)

Go to Moderator Control Panel -> Warnings -> Find a member -> select member. It will not work because the URL is empty.

Fix in includes/mcp/mcp_warn.php
Find:
Code: Select all
$template->assign_var('U_POST_ACTION', "mcp.$phpEx$SID&i=warn&mode=warn_user");

Replace with:
Code: Select all
   $template->assign_vars(array(
      'U_POST_ACTION' => "mcp.$phpEx$SID&i=warn&mode=warn_user",
      'U_FIND_MEMBER' => "memberlist.$phpEx$SID&mode=searchuser&form=mcp&field=username",
      )
   );


Thanks.

Comments / History

Posted by pentapenguin (Former Team Member) on Mar 23rd 2006, 22:15

Forgot to add...see this bug fix or this fix here still won't work right. Smile
http://www.phpbb.com/bugs/viewreport.php?b=1251

Linked ticket with changeset: r5714

Action performed by Anonymous (I am too lazy to register) on Mar 25th 2006, 15:30

Ticket details

Related SVN changesets