From 931ba3e0394049e90340dcdbc5a2d09883beb394 Mon Sep 17 00:00:00 2001 From: conradverm Date: Mon, 22 Oct 2007 11:45:54 +0000 Subject: [PATCH] KTS-673 "The search algorithm needs some work" Updated. Parameters to command not passed correctly --- search2/indexing/extractorCore.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search2/indexing/extractorCore.inc.php b/search2/indexing/extractorCore.inc.php index 897055f..b75c9fc 100755 --- a/search2/indexing/extractorCore.inc.php +++ b/search2/indexing/extractorCore.inc.php @@ -408,7 +408,7 @@ abstract class ApplicationExtractor extends ExternalDocumentExtractor { $sources = array('{source}','{target}'); $target = array($this->sourcefile, $this->targetfile); - $cmdline = $this->command . ' ' . str_replace($sources,$target, $params); + $cmdline = $this->command . ' ' . str_replace($sources,$target, $this->params); return $cmdline; } -- libgit2 0.21.4