[Fixed] now url /logout disconnects from admin if connected and from warehouse if connected. Trouble with new version (management of HTTP methods catched as GET instead of POST) -> PHP method set manually to make it POST

This commit is contained in:
xdrm-brackets 2017-02-17 08:27:34 +01:00
parent 00b7efa1ef
commit 15c2dacd22
1 changed files with 2 additions and 0 deletions

View File

@ -85,6 +85,7 @@
// logout from admin // logout from admin
$R->get('logout/?', function(){ $R->get('logout/?', function(){
$_SERVER['REQUEST_METHOD'] = 'POST';
$req = new Request('authentificationDefault/admin', ['username' => '0', 'password' => '']); $req = new Request('authentificationDefault/admin', ['username' => '0', 'password' => '']);
$res = $req->dispatch(); $res = $req->dispatch();
header('Location: /'); header('Location: /');
@ -108,6 +109,7 @@
// warehouse logout // warehouse logout
$R->get('logout/?', function(){ $R->get('logout/?', function(){
$_SERVER['REQUEST_METHOD'] = 'POST';
(new Request('authentificationDefault/warehouse', ['name' => '000', 'password' => '']))->dispatch(); (new Request('authentificationDefault/warehouse', ['name' => '000', 'password' => '']))->dispatch();
header('Location: /'); header('Location: /');
}); });