aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/index.php b/index.php
index fdcfc328..d79f3f95 100644
--- a/index.php
+++ b/index.php
@@ -81,6 +81,8 @@ if (Session::isLogged()) {
81 $poche->action($action, $url, $id); 81 $poche->action($action, $url, $id);
82 $tpl_file = Tools::getTplFile($view); 82 $tpl_file = Tools::getTplFile($view);
83 $tpl_vars = array_merge($tpl_vars, $poche->displayView($view, $id)); 83 $tpl_vars = array_merge($tpl_vars, $poche->displayView($view, $id));
84} elseif(isset($_SERVER['PHP_AUTH_USER'])) {
85 $poche->login($referer);
84} else { 86} else {
85 $tpl_file = Tools::getTplFile('login'); 87 $tpl_file = Tools::getTplFile('login');
86} 88}
@@ -90,4 +92,4 @@ $messages = $poche->messages->display('all', FALSE);
90$tpl_vars = array_merge($tpl_vars, array('messages' => $messages)); 92$tpl_vars = array_merge($tpl_vars, array('messages' => $messages));
91 93
92# display poche 94# display poche
93echo $poche->tpl->render($tpl_file, $tpl_vars); \ No newline at end of file 95echo $poche->tpl->render($tpl_file, $tpl_vars);