From 86bf040c7271f0ff81779e729d81557a69578551 Mon Sep 17 00:00:00 2001 From: tianshujie98 Date: Wed, 18 Aug 2021 16:53:49 +0800 Subject: [PATCH] * Fixed issue with publishing browser notifications; --- module/release/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/release/model.php b/module/release/model.php index e0074e0cb1..f3b1e04fca 100644 --- a/module/release/model.php +++ b/module/release/model.php @@ -272,7 +272,7 @@ class releaseModel extends model /* Init vars. */ $notifyPersons = array(); $managers = ''; - $notifyList = explode($notifyList, ','); + $notifyList = explode(',', $notifyList); foreach($notifyList as $notify) {