From 52c4f1342431d3293a8d3486baf5e73c8c543446 Mon Sep 17 00:00:00 2001 From: Shawn Bulen Date: Sun, 6 Oct 2024 12:18:02 -0700 Subject: [PATCH] Remove unused member_groups col from query Signed by Shawn Bulen, bulens@pacbell.net --- Sources/Tasks/CreatePost_Notify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Tasks/CreatePost_Notify.php b/Sources/Tasks/CreatePost_Notify.php index e753fe667e..3f73fd9cf6 100644 --- a/Sources/Tasks/CreatePost_Notify.php +++ b/Sources/Tasks/CreatePost_Notify.php @@ -162,7 +162,7 @@ public function execute(): bool mem.email_address, mem.lngfile, mem.pm_ignore_list, mem.id_group, mem.id_post_group, mem.additional_groups, mem.time_format, mem.time_offset, mem.timezone, - b.member_groups, t.id_member_started, t.id_member_updated + t.id_member_started, t.id_member_updated FROM {db_prefix}log_notify AS ln INNER JOIN {db_prefix}members AS mem ON (ln.id_member = mem.id_member) LEFT JOIN {db_prefix}topics AS t ON (t.id_topic = ln.id_topic)