diff options
Diffstat (limited to 'phpBB/includes/ucp/ucp_zebra.php')
| -rw-r--r-- | phpBB/includes/ucp/ucp_zebra.php | 28 | 
1 files changed, 14 insertions, 14 deletions
diff --git a/phpBB/includes/ucp/ucp_zebra.php b/phpBB/includes/ucp/ucp_zebra.php index 090f9bf34c..fa6a03f87c 100644 --- a/phpBB/includes/ucp/ucp_zebra.php +++ b/phpBB/includes/ucp/ucp_zebra.php @@ -1,9 +1,13 @@  <?php  /**  * -* @package ucp -* @copyright (c) 2005 phpBB Group -* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file.  *  */ @@ -15,17 +19,13 @@ if (!defined('IN_PHPBB'))  	exit;  } -/** -* ucp_zebra -* @package ucp -*/  class ucp_zebra  {  	var $u_action;  	function main($id, $mode)  	{ -		global $config, $db, $user, $auth, $template, $phpbb_root_path, $phpEx, $request, $phpbb_dispatcher; +		global $db, $user, $auth, $template, $phpbb_root_path, $phpEx, $request, $phpbb_dispatcher;  		$submit	= (isset($_POST['submit']) || isset($_GET['add']) || isset($_GET['remove'])) ? true : false;  		$s_hidden_fields = ''; @@ -44,7 +44,7 @@ class ucp_zebra  			foreach ($var_ary as $var => $default)  			{ -				$data[$var] = request_var($var, $default, true); +				$data[$var] = $request->variable($var, $default, true);  			}  			if (!empty($data['add']) || sizeof($data['usernames'])) @@ -62,7 +62,7 @@ class ucp_zebra  						* @event core.ucp_remove_zebra  						* @var	string	mode		Zebra type: friends|foes  						* @var	array	user_ids	User ids we remove -						* @since 3.1-A1 +						* @since 3.1.0-a1  						*/  						$vars = array('mode', 'user_ids');  						extract($phpbb_dispatcher->trigger_event('core.ucp_remove_zebra', compact($vars))); @@ -207,7 +207,7 @@ class ucp_zebra  									*							friends|foes  									* @var	array	sql_ary		Array of  									*							entries we add -									* @since 3.1-A1 +									* @since 3.1.0-a1  									*/  									$vars = array('mode', 'sql_ary');  									extract($phpbb_dispatcher->trigger_event('core.ucp_add_zebra', compact($vars))); @@ -224,15 +224,15 @@ class ucp_zebra  							}  						}  					} -					 +  					if ($request->is_ajax())  					{  						$message = ($updated) ? $user->lang[$l_mode . '_UPDATED'] : implode('<br />', $error); -						 +  						$json_response = new \phpbb\json_response;  						$json_response->send(array(  							'success' => $updated, -							 +  							'MESSAGE_TITLE'	=> $user->lang['INFORMATION'],  							'MESSAGE_TEXT'	=> $message,  							'REFRESH_DATA'	=> array(  | 
