diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-18 10:20:59 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-18 10:20:59 -0500 |
commit | f4fedfe95bdebe276563e9718cf3f3480dc2b8b9 (patch) | |
tree | 6be084caff398b0f410ecd4f11fe42f6fa42c994 /phpBB/install | |
parent | b5e069f8798a4ecd8f8b7d054932f63cdebb2a72 (diff) | |
parent | 98921e0b87b25fcd5985edb747d5768cd8ccf18e (diff) | |
download | forums-f4fedfe95bdebe276563e9718cf3f3480dc2b8b9.tar forums-f4fedfe95bdebe276563e9718cf3f3480dc2b8b9.tar.gz forums-f4fedfe95bdebe276563e9718cf3f3480dc2b8b9.tar.bz2 forums-f4fedfe95bdebe276563e9718cf3f3480dc2b8b9.tar.xz forums-f4fedfe95bdebe276563e9718cf3f3480dc2b8b9.zip |
Merge PR #1098 branch 'igorw/ticket/11213' into develop
* igorw/ticket/11213:
[ticket/11213] Add missing global in install_update.php
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/install_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php index 8c044550f3..7f40015002 100644 --- a/phpBB/install/install_update.php +++ b/phpBB/install/install_update.php @@ -71,7 +71,7 @@ class install_update extends module function main($mode, $sub) { - global $style, $template, $phpEx, $phpbb_root_path, $user, $db, $config, $cache, $auth, $language; + global $phpbb_style, $template, $phpEx, $phpbb_root_path, $user, $db, $config, $cache, $auth, $language; global $request; $this->tpl_name = 'install_update'; |