We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be1f9c9 commit 050137cCopy full SHA for 050137c
src/php/standaloneGenerator.php
@@ -13,7 +13,7 @@
13
$evalPosition = strpos ( $fullsource, $evalPositionString );
14
$fullsourcePart1 = substr ( $fullsource, 0, $evalPosition );
15
$fullsourcePart2 = substr ( $fullsource, $evalPosition );
16
-$fullsource = $fullsourcePart1 .= "\ndefine('IS_STANDALONE',true,true);\n" . $fullsourcePart2;
+$fullsource = $fullsourcePart1 .= "\ndefine('IS_STANDALONE',true);\n" . $fullsourcePart2;
17
if ($evalPosition === false) {
18
throw new Exception ( 'cannot find ' . $evalPositionString );
19
}
0 commit comments