mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 06:38:52 +00:00
[ticket/11768] Replaced array access with call to $user->lang()
PHPBB3-11768
This commit is contained in:
parent
20a1646fc6
commit
89d87a99db
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ class parser implements \phpbb\textformatter\parser_interface
|
||||||
}
|
}
|
||||||
else if ($msg === 'UNABLE_GET_IMAGE_SIZE')
|
else if ($msg === 'UNABLE_GET_IMAGE_SIZE')
|
||||||
{
|
{
|
||||||
$errors[] = $this->user->lang[$msg];
|
$errors[] = $this->user->lang($msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue