diff options
Diffstat (limited to 'phpBB/includes/functions_profile_fields.php')
| -rw-r--r-- | phpBB/includes/functions_profile_fields.php | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/phpBB/includes/functions_profile_fields.php b/phpBB/includes/functions_profile_fields.php index 78fe049f40..44deffa162 100644 --- a/phpBB/includes/functions_profile_fields.php +++ b/phpBB/includes/functions_profile_fields.php @@ -610,6 +610,7 @@ class custom_profile  	function get_var($field_validation, &$profile_row, $default_value, $preview)  	{  		global $user; +		global $request;  		$profile_row['field_ident'] = (isset($profile_row['var_name'])) ? $profile_row['var_name'] : 'pf_' . $profile_row['field_ident'];  		$user_ident = $profile_row['field_ident']; @@ -622,7 +623,7 @@ class custom_profile  		{  			if (isset($_REQUEST[$profile_row['field_ident']]))  			{ -				$value = ($_REQUEST[$profile_row['field_ident']] === '') ? NULL : request_var($profile_row['field_ident'], $default_value); +				$value = ($request->variable($profile_row['field_ident'], '') === '') ? NULL : $request->variable($profile_row['field_ident'], $default_value);  			}  			else  			{ @@ -899,6 +900,7 @@ class custom_profile  	{  		global $phpbb_root_path, $phpEx;  		global $config; +		global $request;  		$var_name = 'pf_' . $profile_row['field_ident']; @@ -943,7 +945,7 @@ class custom_profile  			break;  			case FIELD_INT: -				if (isset($_REQUEST[$var_name]) && $_REQUEST[$var_name] === '') +				if (isset($_REQUEST[$var_name]) && $request->variable($var_name, '') === '')  				{  					$var = NULL;  				} @@ -1146,5 +1148,3 @@ class custom_profile_admin extends custom_profile  		return $options;  	}  } - -?>
\ No newline at end of file | 
