mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[feature/avatars] Remove unneeded argument for driver prepare_form()
PHPBB3-10018
This commit is contained in:
parent
6d994380d7
commit
d104866992
4 changed files with 7 additions and 7 deletions
|
@ -99,7 +99,7 @@ abstract class phpbb_avatar_driver implements phpbb_avatar_driver_interface
|
||||||
/**
|
/**
|
||||||
* @inheritdoc
|
* @inheritdoc
|
||||||
**/
|
**/
|
||||||
public function prepare_form($template, $row, &$error, &$override_focus)
|
public function prepare_form($template, $row, &$error)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,7 @@ interface phpbb_avatar_driver_interface
|
||||||
/**
|
/**
|
||||||
* @TODO
|
* @TODO
|
||||||
**/
|
**/
|
||||||
public function prepare_form($template, $row, &$error, &$override_focus);
|
public function prepare_form($template, $row, &$error);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @TODO
|
* @TODO
|
||||||
|
|
Loading…
Add table
Reference in a new issue