From 1652ded48c9c62c40157a5142e5231adbc574ddb Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 4 Oct 2010 00:02:24 +0200 Subject: i18n/L10n review, extension credits added. --- plugins/SphinxSearch/scripts/index_update.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/SphinxSearch/scripts/index_update.php') diff --git a/plugins/SphinxSearch/scripts/index_update.php b/plugins/SphinxSearch/scripts/index_update.php index 23c60ced7..abac5434f 100755 --- a/plugins/SphinxSearch/scripts/index_update.php +++ b/plugins/SphinxSearch/scripts/index_update.php @@ -42,20 +42,20 @@ sphinx_iterate_sites('sphinx_index_update'); function sphinx_index_update($sn) { $base = sphinx_base(); - + $baseIndexes = array('notice', 'profile'); $params = array(); - + if (have_option('rotate')) { $params[] = '--rotate'; } foreach ($baseIndexes as $index) { $params[] = "{$sn->dbname}_{$index}"; } - + $params = implode(' ', $params); $cmd = "$base/bin/indexer --config $base/etc/sphinx.conf $params"; - + print "$cmd\n"; system($cmd); } -- cgit v1.2.3-54-g00ecf