diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-04-11 09:08:46 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-04-11 09:08:46 +0200 |
commit | d3f378d1d62acb000d822a50a1695110ebe731ab (patch) | |
tree | 9f087cab4f6befd0497e0e5bdff6c6bdae22c0cf /phpBB/phpbb/log | |
parent | 251b2ba28f2be2f9a889b931f5736279ce378e91 (diff) | |
download | forums-d3f378d1d62acb000d822a50a1695110ebe731ab.tar forums-d3f378d1d62acb000d822a50a1695110ebe731ab.tar.gz forums-d3f378d1d62acb000d822a50a1695110ebe731ab.tar.bz2 forums-d3f378d1d62acb000d822a50a1695110ebe731ab.tar.xz forums-d3f378d1d62acb000d822a50a1695110ebe731ab.zip |
[ticket/12388] Fix translation of log entries without additional log data
PHPBB3-12388
Diffstat (limited to 'phpBB/phpbb/log')
-rw-r--r-- | phpBB/phpbb/log/log.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/phpbb/log/log.php b/phpBB/phpbb/log/log.php index 24eb408b63..44fba06d9d 100644 --- a/phpBB/phpbb/log/log.php +++ b/phpBB/phpbb/log/log.php @@ -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++; } |