From 031273de728e2c69e583cc4beef49087228cbc2c Mon Sep 17 00:00:00 2001 From: n-aleha Date: Mon, 12 May 2014 01:00:59 +0300 Subject: [ticket/11467] Add language variables for extension exception messages Remove hard-coded messages and add language variables for extension exception messages. PHPBB3-11467 --- phpBB/includes/functions_admin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/includes/functions_admin.php') diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 3000a18668..2d3ac62f86 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; } } -- cgit v1.2.1