From f820bac84dd641f77138079d23172adb80fe1e9a Mon Sep 17 00:00:00 2001 From: Peter Jaap Blaakmeer Date: Mon, 7 Nov 2022 20:32:15 +0100 Subject: [PATCH] Fix sprintf Unknown format specifier "S" in vendor/element119/module-indexer-deploy-config/Console/Command/IndexerLockAll.php(80) --- Console/Command/IndexerLockAll.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Console/Command/IndexerLockAll.php b/Console/Command/IndexerLockAll.php index 2eecf24..da2091d 100644 --- a/Console/Command/IndexerLockAll.php +++ b/Console/Command/IndexerLockAll.php @@ -75,7 +75,7 @@ protected function execute( $indexerConfig[$mode][] = $indexer->getIndexerId(); $output->writeln(sprintf( - '%S indexer has been locked to %s', + '%s indexer has been locked to %s', $indexer->getTitle(), $mode === IndexerSetModeCommand::INPUT_KEY_SCHEDULE ? 'Update on Schedule' : 'Update on Save' ));