✨ Ajoute la redirection
This commit is contained in:
parent
1e83e7f8d0
commit
08de1a5c7f
1 changed files with 6 additions and 1 deletions
|
@ -38,7 +38,7 @@ class Renderer {
|
||||||
global $controlrow;
|
global $controlrow;
|
||||||
global $numqueries;
|
global $numqueries;
|
||||||
global $starttime;
|
global $starttime;
|
||||||
|
|
||||||
$this->prepare("STYLE_FOLDER", '/theme/default/');
|
$this->prepare("STYLE_FOLDER", '/theme/default/');
|
||||||
$this->prepare("dkgamename", $controlrow["gamename"]);
|
$this->prepare("dkgamename", $controlrow["gamename"]);
|
||||||
$this->prepare("totaltime", round(getmicrotime() - $starttime, 4));
|
$this->prepare("totaltime", round(getmicrotime() - $starttime, 4));
|
||||||
|
@ -49,4 +49,9 @@ class Renderer {
|
||||||
echo $this->twig->render($template, $this->data);
|
echo $this->twig->render($template, $this->data);
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function redirect($redirection) {
|
||||||
|
header("Location: " . $redirection);
|
||||||
|
die();
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue