diff options
author | n-aleha <nick_aleha@myway.com> | 2014-05-12 01:00:59 +0300 |
---|---|---|
committer | n-aleha <nick_aleha@myway.com> | 2014-05-29 01:07:44 +0300 |
commit | 031273de728e2c69e583cc4beef49087228cbc2c (patch) | |
tree | 636bd74248fc0f3ac45231c8adfa8f02dad6f3cd /phpBB/includes/functions_admin.php | |
parent | 305be2ae64dc3236d9e39a97d35394ba171482b1 (diff) | |
download | forums-031273de728e2c69e583cc4beef49087228cbc2c.tar forums-031273de728e2c69e583cc4beef49087228cbc2c.tar.gz forums-031273de728e2c69e583cc4beef49087228cbc2c.tar.bz2 forums-031273de728e2c69e583cc4beef49087228cbc2c.tar.xz forums-031273de728e2c69e583cc4beef49087228cbc2c.zip |
[ticket/11467] Add language variables for extension exception messages
Remove hard-coded messages and add language variables for extension
exception messages.
PHPBB3-11467
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 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; } } |