mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/14039] Use compatibility globals from the update package
PHPBB3-14039
This commit is contained in:
parent
100bb8f27c
commit
6b561b9eae
1 changed files with 8 additions and 1 deletions
|
@ -168,6 +168,13 @@ class container_factory
|
|||
}
|
||||
|
||||
// Get compatibilty globals
|
||||
if (file_exists($this->phpbb_root_path . 'install/update/new/includes/compatibility_globals.' . $this->php_ext))
|
||||
{
|
||||
require($this->phpbb_root_path . 'install/update/new/includes/compatibility_globals.' . $this->php_ext);
|
||||
}
|
||||
else
|
||||
{
|
||||
require($this->phpbb_root_path . 'includes/compatibility_globals.' . $this->php_ext);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue