diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-05-28 23:46:15 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-05-28 23:46:15 +0200 |
| commit | 953ca2772867ee7d21491a757303d93a2b8cec53 (patch) | |
| tree | 24aad48c483143671aa934d1c8f15239ab44b759 /phpBB/includes/functions_admin.php | |
| parent | 6df911142c6ba43d1222f4235fbedb1628edf27a (diff) | |
| parent | 305be2ae64dc3236d9e39a97d35394ba171482b1 (diff) | |
| download | forums-953ca2772867ee7d21491a757303d93a2b8cec53.tar forums-953ca2772867ee7d21491a757303d93a2b8cec53.tar.gz forums-953ca2772867ee7d21491a757303d93a2b8cec53.tar.bz2 forums-953ca2772867ee7d21491a757303d93a2b8cec53.tar.xz forums-953ca2772867ee7d21491a757303d93a2b8cec53.zip | |
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: (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.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; } } |
