1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-08 00:25:19 +02:00

[ticket/11201] Fix some variable names

PHPBB3-11201
This commit is contained in:
Joas Schilling 2014-01-18 13:28:17 +01:00
parent ad8d4492a7
commit f40f774b2e
2 changed files with 2 additions and 2 deletions

View File

@ -971,7 +971,7 @@ class acp_profile
}
}
$cp->vars = $profile_type->get_language_options_input($cp->vars);
$cp->vars = $profile_field->get_language_options_input($cp->vars);
if ($cp->vars['lang_options'])
{

View File

@ -203,7 +203,7 @@ class type_date extends type_base
return $this->user->create_datetime()
->setDate($year, $month, $day)
->setTime(0, 0, 0)
->format($user->lang['DATE_FORMAT'], true);
->format($this->user->lang['DATE_FORMAT'], true);
}
return $field_value;