Commit ca914c3cc4870ed4b2ddd7a5223f6bb05c0e1e9f
1 parent
3f87c6d8
KTS-673
"The search algorithm needs some work" Updated. using externalBinary Committed By: Conrad Vermeulen Reviewed By: Kevin Fourie git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7372 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
2 changed files
with
2 additions
and
2 deletions
search2/indexing/extractors/PDFExtractor.inc.php
| ... | ... | @@ -4,7 +4,7 @@ class PDFExtractor extends ApplicationExtractor |
| 4 | 4 | { |
| 5 | 5 | public function __construct() |
| 6 | 6 | { |
| 7 | - parent::__construct('extractors','pdftotext','pdftotext',_kt('PDF Text Extractor'),'-nopgbrk -enc UTF-8 {source} {target}'); | |
| 7 | + parent::__construct('externalBinary','pdftotext','pdftotext',_kt('PDF Text Extractor'),'-nopgbrk -enc UTF-8 {source} {target}'); | |
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | public function getSupportedMimeTypes() | ... | ... |
search2/indexing/extractors/PSExtractor.inc.php
| ... | ... | @@ -4,7 +4,7 @@ class PSExtractor extends ApplicationExtractor |
| 4 | 4 | { |
| 5 | 5 | public function __construct() |
| 6 | 6 | { |
| 7 | - parent::__construct('extractors','pstotext','pstotext',_kt('PostScript Text Extractor'),'-nopgbrk -enc UTF-8 {source} {target}'); | |
| 7 | + parent::__construct('externalBinary','pstotext','pstotext',_kt('PostScript Text Extractor'),'-nopgbrk -enc UTF-8 {source} {target}'); | |
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | public function getSupportedMimeTypes() | ... | ... |