From 6cc92a647eb11c7d3fb311dd362d55fb681b7706 Mon Sep 17 00:00:00 2001 From: Robert Kaiser Date: Sun, 12 Feb 2017 19:49:13 +0100 Subject: [PATCH] use correct table name --- app/authutils.php-class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/authutils.php-class b/app/authutils.php-class index 65c7afd..df41e71 100755 --- a/app/authutils.php-class +++ b/app/authutils.php-class @@ -141,7 +141,7 @@ class AuthUtils { $this->db->executeQuery('SET time_zone = "+00:00";'); // Make sure the DB runs on UTC for this connection. // Update DB schema if needed (if the utils PHP file has been changed since we last checked the DB, we trigger the update functionality). try { - $last_log = $this->db->fetchColumn('SELECT time_logged FROM fs_log WHERE code = \'db_checked\' ORDER BY id DESC LIMIT 1', array(1), 0); + $last_log = $this->db->fetchColumn('SELECT time_logged FROM auth_log WHERE code = \'db_checked\' ORDER BY id DESC LIMIT 1', array(1), 0); $utils_mtime = filemtime(__FILE__); } catch (Exception $e) { -- 2.35.3