Commit 47dca59db81d7de850c3816e4df357387f534a5d

Authored by kevin_fourie
1 parent 8f0d8818

KTS-1821

"Error in sprintf function - wrong amount of arguments"
Fixed.

Reviewed By: Jalaloedien



git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6416 c91229c3-7414-0410-bfa2-8a42b809f60b
plugins/ktstandard/contents/PowerpointIndexer.php
... ... @@ -43,7 +43,7 @@ class KTPowerpointIndexerTrigger extends KTBaseIndexerTrigger {
43 43  
44 44 // can't find the local command.
45 45 if (empty($sCommand)) {
46   - return sprintf(_kt('Unable to find required command for indexing. Please ensure that <strong>%s</strong> is installed and in the %d Path. For more information on indexers and helper applications, please <a href="%s">visit the %d site</a>.'), $this->command, $this->support_url, APP_NAME);
  46 + return sprintf(_kt('Unable to find required command for indexing. Please ensure that <strong>%s</strong> is installed and in the %s Path. For more information on indexers and helper applications, please <a href="%s">visit the %s site</a>.'), $this->command, APP_NAME, $this->support_url, APP_NAME);
47 47 }
48 48  
49 49 return null;
... ...