From 4cd3a93e960e86471a39bc299369d9f5480d89c1 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 18 Feb 2019 16:30:03 -0500 Subject: [PATCH] add missing / --- web/api/app/Controller/AppController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/api/app/Controller/AppController.php b/web/api/app/Controller/AppController.php index bec586368..9dd27e945 100644 --- a/web/api/app/Controller/AppController.php +++ b/web/api/app/Controller/AppController.php @@ -70,7 +70,7 @@ class AppController extends Controller { $user = $this->Session->read('user'); if ( ZM_OPT_USE_AUTH ) { - require_once __DIR__ .'../../../includes/auth.php'; + require_once __DIR__ .'/../../../includes/auth.php'; $mUser = $this->request->query('user') ? $this->request->query('user') : $this->request->data('user'); $mPassword = $this->request->query('pass') ? $this->request->query('pass') : $this->request->data('pass');