From 47dca59db81d7de850c3816e4df357387f534a5d Mon Sep 17 00:00:00 2001 From: kevin_fourie Date: Mon, 19 Mar 2007 18:03:15 +0000 Subject: [PATCH] KTS-1821 "Error in sprintf function - wrong amount of arguments" Fixed. --- plugins/ktstandard/contents/PowerpointIndexer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ktstandard/contents/PowerpointIndexer.php b/plugins/ktstandard/contents/PowerpointIndexer.php index eed00c4..a3a850d 100644 --- a/plugins/ktstandard/contents/PowerpointIndexer.php +++ b/plugins/ktstandard/contents/PowerpointIndexer.php @@ -43,7 +43,7 @@ class KTPowerpointIndexerTrigger extends KTBaseIndexerTrigger { // can't find the local command. if (empty($sCommand)) { - return sprintf(_kt('Unable to find required command for indexing. Please ensure that %s is installed and in the %d Path. For more information on indexers and helper applications, please visit the %d site.'), $this->command, $this->support_url, APP_NAME); + return sprintf(_kt('Unable to find required command for indexing. Please ensure that %s is installed and in the %s Path. For more information on indexers and helper applications, please visit the %s site.'), $this->command, APP_NAME, $this->support_url, APP_NAME); } return null; -- libgit2 0.21.4