- check if $this->_notifyList is empty not just not set

This commit is contained in:
steinm 2011-01-28 07:32:51 +00:00
parent 15933e6ef9
commit 696ee8c601

View File

@ -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;