1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[ticket/12388] Fix translation of log entries without additional log data

PHPBB3-12388
This commit is contained in:
Joas Schilling 2014-04-11 09:08:46 +02:00
parent 251b2ba28f
commit d3f378d1d6

View File

@ -558,6 +558,10 @@ class log implements \phpbb\log\log_interface
$log[$i]['action'] = make_clickable($log[$i]['action']);
*/
}
else
{
$log[$i]['action'] = $this->user->lang($log[$i]['action']);
}
$i++;
}