Fix #1513 while taking advantage of session cache

This commit is contained in:
Chanyoung Oh 2020-12-23 13:48:08 +00:00 committed by GitHub
parent 3e7f2e291c
commit 5fa290aaf1
2 changed files with 8 additions and 5 deletions

View file

@ -558,7 +558,7 @@ class documentItem extends BaseObject
return $_SESSION['declared_document'][$this->document_srl] = $declaredCount;
}
return $_SESSION['declared_document'][$this->document_srl] = false;
return false;
}
function getTitle($cut_size = 0, $tail = '...')