diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-05-11 21:54:19 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-05-28 22:17:00 +0200 |
commit | 64467f50db496d0cc388e437dd9d843d5faf6449 (patch) | |
tree | 6704be3842f6d1241db2cae330d0f64affac46e5 /phpBB/includes/functions_admin.php | |
parent | 537d8b3c1691a3676bf1788c57fa37b00ad9faf6 (diff) | |
download | forums-64467f50db496d0cc388e437dd9d843d5faf6449.tar forums-64467f50db496d0cc388e437dd9d843d5faf6449.tar.gz forums-64467f50db496d0cc388e437dd9d843d5faf6449.tar.bz2 forums-64467f50db496d0cc388e437dd9d843d5faf6449.tar.xz forums-64467f50db496d0cc388e437dd9d843d5faf6449.zip |
[ticket/11366] Update FILE_NOT_FOUND language string
PHPBB3-11366
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 4463226707..3000a18668 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -3030,7 +3030,7 @@ function get_remote_file($host, $directory, $filename, &$errstr, &$errno, $port } else if (stripos($line, '404 not found') !== false) { - $errstr = $user->lang['FILE_NOT_FOUND'] . ': ' . $filename; + $errstr = $user->lang('FILE_NOT_FOUND', $filename); return false; } } |