[fix/redirect_link] Correctly redirect to app.php/portal for now

This does not work yet though, as the redirect() function is unable to handle
redirects to app.php/xyz.
This commit is contained in:
Marc Alexander
2013-11-02 10:35:03 +01:00
parent 6ee32bad32
commit 2d5a7af22d

View File

@@ -135,7 +135,7 @@ class portal_user_menu_module
{
// Assign specific vars
$template->assign_vars(array(
'U_PORTAL' => append_sid("{$phpbb_root_path}portal.$phpEx"),
'U_PORTAL' => append_sid("{$phpbb_root_path}app.$phpEx/portal"),
'S_DISPLAY_FULL_LOGIN' => true,
'S_AUTOLOGIN_ENABLED' => ($config['allow_autologin']) ? true : false,
'S_LOGIN_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login'),