diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-11-17 01:17:45 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-11-17 05:27:36 +0100 |
commit | 98921e0b87b25fcd5985edb747d5768cd8ccf18e (patch) | |
tree | cc1d4772e6979006f2262f7c4d5b861c46501bb3 | |
parent | 65dde648cab316fd0f0715f13d57ef45452398a3 (diff) | |
download | forums-98921e0b87b25fcd5985edb747d5768cd8ccf18e.tar forums-98921e0b87b25fcd5985edb747d5768cd8ccf18e.tar.gz forums-98921e0b87b25fcd5985edb747d5768cd8ccf18e.tar.bz2 forums-98921e0b87b25fcd5985edb747d5768cd8ccf18e.tar.xz forums-98921e0b87b25fcd5985edb747d5768cd8ccf18e.zip |
[ticket/11213] Add missing global in install_update.php
PHPBB3-11213
-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'; |