From 802876e9a8161a83737192d34c0fe7e0bbf4ecb9 Mon Sep 17 00:00:00 2001 From: "Shamiso.Jaravaza" <33659194+ssj365@users.noreply.github.com> Date: Tue, 27 Feb 2024 10:54:50 -0700 Subject: [PATCH] MDL-80061 mod_bigbluebuttonbn: Change filter field * Change dismissed recording time filter from timecreated to timemodified --- mod/bigbluebuttonbn/classes/recording.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/bigbluebuttonbn/classes/recording.php b/mod/bigbluebuttonbn/classes/recording.php index 34bcb7556c0..d0565a82426 100644 --- a/mod/bigbluebuttonbn/classes/recording.php +++ b/mod/bigbluebuttonbn/classes/recording.php @@ -788,7 +788,7 @@ class recording extends persistent { if ($dismissedonly) { mtrace("=> Looking for any recording that has been 'dismissed' in the past " . self::RECORDING_TIME_LIMIT_DAYS . " days."); - $select = 'status = :status_dismissed AND timecreated > :withindays'; + $select = 'status = :status_dismissed AND timemodified > :withindays'; $params['status_dismissed'] = self::RECORDING_STATUS_DISMISSED; } else { mtrace("=> Looking for any recording awaiting processing from the past " . self::RECORDING_TIME_LIMIT_DAYS . " days.");