Commit 48f7b2107cf859f5c09ec9bf338d5bfd3da56449
1 parent
167a16cc
KTS-673
"The search algorithm needs some work" Updated. Updated reference from Lucene to Document Indexer Committed By: Conrad Vermeulen Reviewed By: Kevin Fourie git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7516 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
4 deletions
plugins/housekeeper/HouseKeeperPlugin.php
| ... | ... | @@ -77,8 +77,6 @@ class HouseKeeperPlugin extends KTPlugin |
| 77 | 77 | 'canClean'=>true |
| 78 | 78 | )); |
| 79 | 79 | |
| 80 | - if (!OS_WINDOWS) | |
| 81 | - { | |
| 82 | 80 | $this->folders[] = |
| 83 | 81 | array( |
| 84 | 82 | 'name'=>_kt('System Temporary Folder'), |
| ... | ... | @@ -86,7 +84,6 @@ class HouseKeeperPlugin extends KTPlugin |
| 86 | 84 | 'pattern'=>'(sess_.+)?(.+\.log$)?', |
| 87 | 85 | 'canClean'=>true |
| 88 | 86 | ); |
| 89 | - } | |
| 90 | 87 | |
| 91 | 88 | $this->folders[] = |
| 92 | 89 | array( |
| ... | ... | @@ -97,7 +94,7 @@ class HouseKeeperPlugin extends KTPlugin |
| 97 | 94 | ); |
| 98 | 95 | $this->folders[] = |
| 99 | 96 | array( |
| 100 | - 'name'=>_kt('KnowledgeTree Lucene Indexes'), | |
| 97 | + 'name'=>_kt('KnowledgeTree Document Index'), | |
| 101 | 98 | 'folder'=>$luceneDir, |
| 102 | 99 | 'pattern'=>'', |
| 103 | 100 | 'canClean'=>false | ... | ... |