Browse Source

Don't always redirect to dashboard on login

pull/40/head
Michael Save 11 years ago
parent
commit
e5bf2a91fc
  1. 7
      inc/mod/pages.php
  2. 2
      mod.php

7
inc/mod/pages.php

@ -28,7 +28,7 @@ function mod_page($title, $template, $args, $subtitle = false) {
);
}
function mod_login() {
function mod_login($redirect = false) {
global $config;
$args = array();
@ -49,7 +49,10 @@ function mod_login() {
// Set cookies
setCookies();
header('Location: ?/', true, $config['redirect_http']);
if ($redirect)
header('Location: ?' . $redirect, true, $config['redirect_http']);
else
header('Location: ?/', true, $config['redirect_http']);
}
}

2
mod.php

@ -91,7 +91,7 @@ $pages = array(
if (!$mod) {
$pages = array('!!' => 'login');
$pages = array('!^(.+)?$!' => 'login');
} elseif (isset($_GET['status'], $_GET['r'])) {
header('Location: ' . $_GET['r'], true, (int)$_GET['status']);
exit;

Loading…
Cancel
Save