Commit a8720cb69b7ec6618f1a9e5537e8754569184f13
1 parent
53440ac2
KTS-3645
"A postscript file not indexed." Fixed. The IgnorePS default value was set to true. It now defaults to false. Committed By: Conrad Vermeulen Reviewed By: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@9486 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
search2/indexing/extractors/PSExtractor.inc.php
| @@ -45,7 +45,7 @@ class PSExtractor extends ApplicationExtractor | @@ -45,7 +45,7 @@ class PSExtractor extends ApplicationExtractor | ||
| 45 | { | 45 | { |
| 46 | $config = KTConfig::getSingleton(); | 46 | $config = KTConfig::getSingleton(); |
| 47 | $params = $config->get('extractorParameters/pstotext', '"{source}" > "{target}"'); | 47 | $params = $config->get('extractorParameters/pstotext', '"{source}" > "{target}"'); |
| 48 | - $this->ignorePS = $config->get('indexer/ignorePS', true); | 48 | + $this->ignorePS = $config->get('indexer/ignorePS', false); |
| 49 | 49 | ||
| 50 | parent::__construct('externalBinary','pstotext','pstotext',_kt('PostScript Text Extractor'), $params); | 50 | parent::__construct('externalBinary','pstotext','pstotext',_kt('PostScript Text Extractor'), $params); |
| 51 | } | 51 | } |