Minor update for manual Reminder for Review

Hello

I propose this minor update in order to keep logic in ReviewReminder:
when a manual reminder is done, reminderWasAutomatic should be set to false.

diff --git a/controllers/grid/users/reviewer/form/ReviewReminderForm.inc.php b/controllers/grid/users/reviewer/form/ReviewReminderForm.inc.php
index 1b0b423d9..fbee0d9a9 100644
--- a/controllers/grid/users/reviewer/form/ReviewReminderForm.inc.php
+++ b/controllers/grid/users/reviewer/form/ReviewReminderForm.inc.php
@@ -187,6 +187,7 @@ class ReviewReminderForm extends Form
 
         // update the ReviewAssignment with the reminded and modified dates
         $reviewAssignment->setDateReminded(Core::getCurrentDate());
+        $reviewAssignment->setReminderWasAutomatic(false);
         $reviewAssignment->stampModified();
         $reviewAssignmentDao = DAORegistry::getDAO('ReviewAssignmentDAO'); /** @var ReviewAssignmentDAO $reviewAssignmentDao */
         $reviewAssignmentDao->updateObject($reviewAssignment);

thank you
(ojs3 3 - main)