mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Bug #44525 - do not try to fetch existing username var in cookie set by external applications on pm'ing
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9494 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
dc1e334d07
commit
2547ca9635
1 changed files with 3 additions and 1 deletions
|
@ -1125,7 +1125,9 @@ function handle_message_list_actions(&$address_list, &$error, $remove_u, $remove
|
|||
$group_list = request_var('group_list', array(0));
|
||||
|
||||
// Build usernames to add
|
||||
$usernames = (isset($_REQUEST['username'])) ? array(request_var('username', '', true)) : array();
|
||||
$usernames = request_var('username', '', true);
|
||||
$usernames = (empty($usernames)) ? array() : array($usernames);
|
||||
|
||||
$username_list = request_var('username_list', '', true);
|
||||
if ($username_list)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue