diff options
| author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-09 17:01:08 -0600 |
|---|---|---|
| committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-09 17:01:08 -0600 |
| commit | 6dee2539419ba2c050830b7677294603a63b559a (patch) | |
| tree | 4981e8a9d0cd2e4ecaf22f1907242397719d2cd6 /phpBB/install/install_install.php | |
| parent | bd987b6e14ffc134f1c1972e3c0fb3b0a19e09b2 (diff) | |
| download | forums-6dee2539419ba2c050830b7677294603a63b559a.tar forums-6dee2539419ba2c050830b7677294603a63b559a.tar.gz forums-6dee2539419ba2c050830b7677294603a63b559a.tar.bz2 forums-6dee2539419ba2c050830b7677294603a63b559a.tar.xz forums-6dee2539419ba2c050830b7677294603a63b559a.zip | |
[ticket/11259] Make phpbb_admin_path available everywhere
PHPBB3-11259
Diffstat (limited to 'phpBB/install/install_install.php')
| -rw-r--r-- | phpBB/install/install_install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 4b2fa046bc..197554d20f 100644 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -1813,7 +1813,7 @@ class install_install extends module */ function email_admin($mode, $sub) { - global $auth, $config, $db, $lang, $template, $user, $phpbb_root_path, $phpEx; + global $auth, $config, $db, $lang, $template, $user, $phpbb_root_path, $phpbb_admin_path, $phpEx; $this->page_title = $lang['STAGE_FINAL']; @@ -1860,7 +1860,7 @@ class install_install extends module 'TITLE' => $lang['INSTALL_CONGRATS'], 'BODY' => sprintf($lang['INSTALL_CONGRATS_EXPLAIN'], $config['version'], append_sid($phpbb_root_path . 'install/index.' . $phpEx, 'mode=convert&language=' . $data['language']), '../docs/README.html'), 'L_SUBMIT' => $lang['INSTALL_LOGIN'], - 'U_ACTION' => append_sid($phpbb_root_path . 'adm/index.' . $phpEx, 'i=send_statistics&mode=send_statistics'), + 'U_ACTION' => append_sid($phpbb_admin_path . 'index.' . $phpEx, 'i=send_statistics&mode=send_statistics'), )); } |
