From 56d08114784b9df8f8b0b4f9ad6e5407d337dc51 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 20 Feb 2020 01:01:23 -0700 Subject: [PATCH] Update authentication.php --- core/authentication/resources/classes/authentication.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/authentication/resources/classes/authentication.php b/core/authentication/resources/classes/authentication.php index 05c5d4b48d..a6b50bad9f 100644 --- a/core/authentication/resources/classes/authentication.php +++ b/core/authentication/resources/classes/authentication.php @@ -101,6 +101,11 @@ class authentication { } } + //add user logs + if (file_exists($_SERVER["PROJECT_ROOT"]."/app/user_logs/app_config.php")) { + user_logs::add($result); + } + //return the result return $result; }