Commit f320f5833ae2c6cbd50209bbccf59b6a28265fbc

Authored by Michael Joseph
1 parent d759f1b2

corrected document count


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2472 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/foldermanagement/deleteFolderBL.php
... ... @@ -118,7 +118,7 @@ if (checkSession()) {
118 118 if (count($aFolderArray) > 0) {
119 119 $oPatternCustom->setHtml(getFolderNotEmptyPage($fFolderID, count($aFolderArray), "folder(s)"));
120 120 } else if (count($aLiveDocuments) > 0) {
121   - $oPatternCustom->setHtml(getFolderNotEmptyPage($fFolderID, count($aDocumentArray), "document(s)"));
  121 + $oPatternCustom->setHtml(getFolderNotEmptyPage($fFolderID, count($aLiveDocuments), "document(s)"));
122 122 } else if (count($aArchivedDocuments) > 0) {
123 123 $oPatternCustom->setHtml(getFolderNotEmptyPage($fFolderID, "", " archived documents"));
124 124 } else {
... ...