aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_admin.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-28 23:46:03 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-28 23:46:03 +0200
commit305be2ae64dc3236d9e39a97d35394ba171482b1 (patch)
tree8f5b135ad8f61e5991a1e7e55b2697841e26c159 /phpBB/includes/functions_admin.php
parent033df350d956121388b7b9be8f1b0f1d1439d2e4 (diff)
parentfde5a9d472976b2b19eb4e9852b86ab7c2347949 (diff)
downloadforums-305be2ae64dc3236d9e39a97d35394ba171482b1.tar
forums-305be2ae64dc3236d9e39a97d35394ba171482b1.tar.gz
forums-305be2ae64dc3236d9e39a97d35394ba171482b1.tar.bz2
forums-305be2ae64dc3236d9e39a97d35394ba171482b1.tar.xz
forums-305be2ae64dc3236d9e39a97d35394ba171482b1.zip
Merge pull request #2309 from Nicofuma/ticket/11366
[ticket/11366] Extension's version's check * Nicofuma/ticket/11366: (29 commits) [ticket/11366] Fix headings css in list page [ticket/11366] Add config value in schema_data.sql [ticket/11366] Fix HTML [ticket/11366] Exchange links and settings' form [ticket/11366] Remove the extra {S_FORM_TOKEN} [ticket/11366] Move the links to the top of the page [ticket/11366] Hide the version check settings by default [ticket/11366] Versions, options and actions heading should be centered [ticket/11366] Better language string for "recheck all" [ticket/11366] Move "recheck all" link [ticket/11366] Add $config['extension_force_unstable'] [ticket/11366] Use force_cache on the list page [ticket/11366] Add recheck-all link [ticket/11366] Force the use of the cache on the list page [ticket/11366] Update FILE_NOT_FOUND language string [ticket/11366] Fix whitespaces [ticket/11366] Update FILE_NOT_FOUND language string [ticket/11366] Update var names [ticket/11366] Align language strings [ticket/11366] Fix detailed view ...
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;
}
}