Fix new documents being marked as notice

This commit is contained in:
Kijin Sung 2020-10-05 20:49:31 +09:00
parent a6e55dcdee
commit 88a5193523

View file

@ -332,7 +332,7 @@ class documentItem extends BaseObject
function isNotice()
{
return (bool) ($this->get('is_notice') !== 'N');
return (bool) ($this->get('is_notice') === 'Y' || $this->get('is_notice') === 'A');
}
function useNotify()