We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c86603f commit af128c3Copy full SHA for af128c3
template/index.php
@@ -27,7 +27,7 @@ function decode_file($filename) {
27
}
28
29
if (isset($_GET["_escaped_fragment_"]) || isset($_GET["print"])) {
30
- $fragment = $_GET["_escaped_fragment_"] ? $_GET["_escaped_fragment_"] : $_GET["print"];
+ $fragment = isset($_GET["_escaped_fragment_"]) ? $_GET["_escaped_fragment_"] : $_GET["print"];
31
try {
32
if (preg_match('/^\/api\/([^-]+)/', $fragment, $m)) {
33
$className = $m[1];
0 commit comments