diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-06-06 13:00:53 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-06-06 13:00:53 +0200 |
commit | 55f7281f61d774c9cac4309aee7ee12a209914f1 (patch) | |
tree | 3b54e36985eb4bf82dd5e0214949f5828112278c /phpBB | |
parent | ad8386a64a0ea1c8f5811767e3bf7c84d9eda27d (diff) | |
download | forums-55f7281f61d774c9cac4309aee7ee12a209914f1.tar forums-55f7281f61d774c9cac4309aee7ee12a209914f1.tar.gz forums-55f7281f61d774c9cac4309aee7ee12a209914f1.tar.bz2 forums-55f7281f61d774c9cac4309aee7ee12a209914f1.tar.xz forums-55f7281f61d774c9cac4309aee7ee12a209914f1.zip |
[ticket/11588] Also use version.phpbb.com in install_update.php.
PHPBB3-11588
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/install/install_update.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php index ec76f2a407..c18a0fb4ec 100644 --- a/phpBB/install/install_update.php +++ b/phpBB/install/install_update.php @@ -1656,7 +1656,9 @@ class install_update extends module { case 'version_info': global $phpbb_root_path, $phpEx; - $info = get_remote_file('www.phpbb.com', '/updatecheck', ((defined('PHPBB_QA')) ? '30x_qa.txt' : '30x.txt'), $errstr, $errno); + + $info = get_remote_file('version.phpbb.com', '/phpbb', + ((defined('PHPBB_QA')) ? '30x_qa.txt' : '30x.txt'), $errstr, $errno); if ($info !== false) { |