Don't always redirect to dashboard on login
This commit is contained in:
parent
1ad71b33e2
commit
e5bf2a91fc
@ -28,7 +28,7 @@ function mod_page($title, $template, $args, $subtitle = false) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function mod_login() {
|
function mod_login($redirect = false) {
|
||||||
global $config;
|
global $config;
|
||||||
|
|
||||||
$args = array();
|
$args = array();
|
||||||
@ -49,6 +49,9 @@ function mod_login() {
|
|||||||
// Set cookies
|
// Set cookies
|
||||||
setCookies();
|
setCookies();
|
||||||
|
|
||||||
|
if ($redirect)
|
||||||
|
header('Location: ?' . $redirect, true, $config['redirect_http']);
|
||||||
|
else
|
||||||
header('Location: ?/', true, $config['redirect_http']);
|
header('Location: ?/', true, $config['redirect_http']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
2
mod.php
2
mod.php
@ -91,7 +91,7 @@ $pages = array(
|
|||||||
|
|
||||||
|
|
||||||
if (!$mod) {
|
if (!$mod) {
|
||||||
$pages = array('!!' => 'login');
|
$pages = array('!^(.+)?$!' => 'login');
|
||||||
} elseif (isset($_GET['status'], $_GET['r'])) {
|
} elseif (isset($_GET['status'], $_GET['r'])) {
|
||||||
header('Location: ' . $_GET['r'], true, (int)$_GET['status']);
|
header('Location: ' . $_GET['r'], true, (int)$_GET['status']);
|
||||||
exit;
|
exit;
|
||||||
|
Loading…
Reference in New Issue
Block a user