aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/docs/CHANGELOG.html5
-rw-r--r--phpBB/install/install_update.php1
2 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index 3a444d7294..1cc71558a8 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -186,10 +186,11 @@ p a {
<div class="paragraph">
<ul class="menu">
- <li>[Fix] Parse error in MCP ban (Bug #13109)</li>
+ <li>[Fix] Parse error in MCP ban (Bug #13109)</li>
<li>[Fix] Correctly hide online status in the profile (Bug #13059)</li>
<li>[Feature] Let the user choose how to update modified files (merging, using new file or using old file) within automatic updater</li>
- <li>[Feature] An extra \ in an Oracle SQL regex was corrected (Bug #13151)</li>
+ <li>[Fix] An extra \ in an Oracle SQL regex was corrected (Bug #13151)</li>
+ <li>[Fix] Added a missing global to get_file() (Bug #13149)</li>
</ul>
diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php
index 3a7cbaf37b..0e97750c9f 100644
--- a/phpBB/install/install_update.php
+++ b/phpBB/install/install_update.php
@@ -1302,6 +1302,7 @@ class install_update extends module
switch ($mode)
{
case 'version_info':
+ global $phpbb_root_path, $phpEx;
$info = get_remote_file('www.phpbb.com', '/updatecheck', '30x.txt', $errstr, $errno);
if ($info !== false)