aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_admin.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-11 21:54:19 +0200
committerTristan Darricau <github@nicofuma.fr>2014-05-28 22:17:00 +0200
commit64467f50db496d0cc388e437dd9d843d5faf6449 (patch)
tree6704be3842f6d1241db2cae330d0f64affac46e5 /phpBB/includes/functions_admin.php
parent537d8b3c1691a3676bf1788c57fa37b00ad9faf6 (diff)
downloadforums-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.php2
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;
}
}