Commit 00eccba8cddf6f71c894220ef96bbe41fd461715

Authored by Conrad Vermeulen
1 parent 738cf656

KTS-673

"The search algorithm needs some work"
Updated. Parameters to command not passed correctly

Committed By: Conrad Vermeulen
Reviewed By: Kevin Fourie

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7441 c91229c3-7414-0410-bfa2-8a42b809f60b
search2/indexing/extractorCore.inc.php
... ... @@ -408,7 +408,7 @@ abstract class ApplicationExtractor extends ExternalDocumentExtractor
408 408 {
409 409 $sources = array('{source}','{target}');
410 410 $target = array($this->sourcefile, $this->targetfile);
411   - $cmdline = $this->command . ' ' . str_replace($sources,$target, $params);
  411 + $cmdline = $this->command . ' ' . str_replace($sources,$target, $this->params);
412 412  
413 413 return $cmdline;
414 414 }
... ...