mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-11 17:44:56 +00:00
- check if $this->_notifyList is empty not just not set
This commit is contained in:
parent
15933e6ef9
commit
696ee8c601
|
@ -763,7 +763,7 @@ class LetoDMS_Core_Folder {
|
|||
* contain a list of users and groups.
|
||||
*/
|
||||
function getNotifyList() { /* {{{ */
|
||||
if (!isset($this->_notifyList)) {
|
||||
if (empty($this->_notifyList)) {
|
||||
$db = $this->_dms->getDB();
|
||||
|
||||
$queryStr ="SELECT * FROM tblNotify WHERE targetType = " . T_FOLDER . " AND target = " . $this->_id;
|
||||
|
|
Loading…
Reference in New Issue
Block a user