mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-13 23:08:53 +00:00
[ticket/11201] Fix construction of dropdown type once again
PHPBB3-11201
This commit is contained in:
parent
74d36591e1
commit
0ec6af38a9
1 changed files with 12 additions and 2 deletions
|
@ -50,10 +50,20 @@ class phpbb_profile_custom_test extends phpbb_database_test_case
|
||||||
->method('lang')
|
->method('lang')
|
||||||
->will($this->returnCallback(array($this, 'return_callback_implode')));
|
->will($this->returnCallback(array($this, 'return_callback_implode')));
|
||||||
|
|
||||||
|
$request = $this->getMock('\phpbb\request\request');
|
||||||
|
$template = $this->getMock('\phpbb\template\template');
|
||||||
|
|
||||||
$cp = new \phpbb\profilefields\type\type_dropdown(
|
$cp = new \phpbb\profilefields\type\type_dropdown(
|
||||||
new \phpbb\profilefields\lang_helper($db),
|
new \phpbb\profilefields\lang_helper($db),
|
||||||
$this->getMock('\phpbb\request\request'),
|
new \phpbb\profilefields\profilefields(
|
||||||
$this->getMock('\phpbb\template\template'),
|
$this->getMock('\phpbb\auth\auth'),
|
||||||
|
$db,
|
||||||
|
$request,
|
||||||
|
$template,
|
||||||
|
$user
|
||||||
|
),
|
||||||
|
$request,
|
||||||
|
$template,
|
||||||
$user
|
$user
|
||||||
);
|
);
|
||||||
$result = $cp->validate_profile_field($field_value, $field_data);
|
$result = $cp->validate_profile_field($field_value, $field_data);
|
||||||
|
|
Loading…
Add table
Reference in a new issue