Skip to content

Commit 1290366

Browse files
LBeckXserver1601com
authored andcommitted
Fix sprintf
1 parent 27a583d commit 1290366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EventListener/Loader2/Loader2Style.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ protected function _combine(string $source): string
140140
private function _getScriptStyle(string $href): string
141141
{
142142
$script = "<script>setTimeout(function() {document.head.innerHTML += '%s';});</script><noscript>%s</noscript>";
143-
return \Safe\sprintf($script, $this->_getStyleTag($href), $this->_getStyleTag($href));
143+
return sprintf($script, $this->_getStyleTag($href), $this->_getStyleTag($href));
144144
}
145145

146146
/**

0 commit comments

Comments
 (0)