phpBB

Code Changes

File: includes/acp/acp_users.php

  Unmodified   Added   Modified   Removed
Line 402Line 402
								$messenger->anti_abuse_headers($config, $user);

$messenger->assign_vars(array(

								$messenger->anti_abuse_headers($config, $user);

$messenger->assign_vars(array(

									'WELCOME_MSG'	=> htmlspecialchars_decode(sprintf($user->lang['WELCOME_SUBJECT'], $config['sitename'])),
'USERNAME' => htmlspecialchars_decode($user_row['username']),

									'WELCOME_MSG'	=> html_entity_decode(sprintf($user->lang['WELCOME_SUBJECT'], $config['sitename']), ENT_COMPAT),
'USERNAME' => html_entity_decode($user_row['username'], ENT_COMPAT),

									'U_ACTIVATE'	=> "$server_url/ucp.$phpEx?mode=activate&u={$user_row['user_id']}&k=$user_actkey")
);


									'U_ACTIVATE'	=> "$server_url/ucp.$phpEx?mode=activate&u={$user_row['user_id']}&k=$user_actkey")
);


Line 466Line 466
									$messenger->anti_abuse_headers($config, $user);

$messenger->assign_vars(array(

									$messenger->anti_abuse_headers($config, $user);

$messenger->assign_vars(array(

										'USERNAME'	=> htmlspecialchars_decode($user_row['username']))

										'USERNAME'	=> html_entity_decode($user_row['username'], ENT_COMPAT))

									);

$messenger->send(NOTIFY_EMAIL);

									);

$messenger->send(NOTIFY_EMAIL);

Line 822Line 822
							* @var	string	action		Quick tool that should be run
* @var array user_row Current user data
* @var string u_action The u_action link

							* @var	string	action		Quick tool that should be run
* @var array user_row Current user data
* @var string u_action The u_action link

 
							* @var	int		user_id		User id of the user to manage

							* @since 3.1.0-a1
* @changed 3.2.2-RC1 Added u_action

							* @since 3.1.0-a1
* @changed 3.2.2-RC1 Added u_action

 
							* @changed 3.2.10-RC1 Added user_id

							*/

							*/

							$vars = array('action', 'user_row', 'u_action');

							$vars = array('action', 'user_row', 'u_action', 'user_id');

							extract($phpbb_dispatcher->trigger_event('core.acp_users_overview_run_quicktool', compact($vars)));

unset($u_action);

							extract($phpbb_dispatcher->trigger_event('core.acp_users_overview_run_quicktool', compact($vars)));

unset($u_action);

Line 2275Line 2277
					}
else
{

					}
else
{

						$view_topic = append_sid("{$phpbb_root_path}viewtopic.$phpEx", "t={$row['topic_id']}&p={$row['post_msg_id']}") . '#p' . $row['post_msg_id'];

						$view_topic = append_sid("{$phpbb_root_path}viewtopic.$phpEx", "p={$row['post_msg_id']}") . '#p' . $row['post_msg_id'];

					}

$template->assign_block_vars('attach', array(

					}

$template->assign_block_vars('attach', array(

Line 2604Line 2606
			break;

default:

			break;

default:

 
				$u_action = $this->u_action;


/**
* Additional modes provided by extensions


/**
* Additional modes provided by extensions

Line 2613Line 2616
				* @var	int		user_id			User id of the user to manage
* @var array user_row Array with user data
* @var array error Array with errors data

				* @var	int		user_id			User id of the user to manage
* @var array user_row Array with user data
* @var array error Array with errors data

 
				* @var	string	u_action		The u_action link

				* @since 3.2.2-RC1

				* @since 3.2.2-RC1

 
				* @changed 3.2.10-RC1 Added u_action

				*/

				*/

				$vars = array('mode', 'user_id', 'user_row', 'error');

				$vars = array('mode', 'user_id', 'user_row', 'error', 'u_action');

				extract($phpbb_dispatcher->trigger_event('core.acp_users_mode_add', compact($vars)));


				extract($phpbb_dispatcher->trigger_event('core.acp_users_mode_add', compact($vars)));


 
				unset($u_action);

			break;
}


			break;
}