summaryrefslogtreecommitdiff
path: root/inc/indexer.php
diff options
context:
space:
mode:
authorTom N Harris <tnharris@whoopdedo.org>2010-11-18 13:55:55 -0500
committerTom N Harris <tnharris@whoopdedo.org>2010-11-18 13:55:55 -0500
commit420edfd639fb3d0a0f6a2504ecb2f8f6b68be1f7 (patch)
tree786e15e1b51698288746cca25a05cc7034caa515 /inc/indexer.php
parent7c2ef4e8d524fb9262c5a08831220f9fb2dc11fe (diff)
downloadrpg-420edfd639fb3d0a0f6a2504ecb2f8f6b68be1f7.tar.gz
rpg-420edfd639fb3d0a0f6a2504ecb2f8f6b68be1f7.tar.bz2
Restore io_runcmd, use io_exec for exec with pipes
Diffstat (limited to 'inc/indexer.php')
-rw-r--r--inc/indexer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/indexer.php b/inc/indexer.php
index 4914c9fc6..32fbf4a1a 100644
--- a/inc/indexer.php
+++ b/inc/indexer.php
@@ -484,7 +484,7 @@ function idx_indexLengths(&$filter){
} else {
$lengths = idx_listIndexLengths();
foreach ( $lengths as $key => $length) {
- // we keep all the values equal or superior
+ // we keep all the values equal or superior
if ((int)$length >= (int)$filter) {
$idx[] = $length;
}
@@ -689,7 +689,7 @@ function idx_tokenizer($string,&$stopwords,$wc=false){
$sw =& $stopwords;
if ($conf['external_tokenizer']) {
- if (0 == io_runcmd($conf['tokenizer_cmd'], $string, $output))
+ if (0 == io_exec($conf['tokenizer_cmd'], $string, $output))
$string = $output;
} else {
if(preg_match('/[^0-9A-Za-z ]/u', $string)) {