fix spacing

This commit is contained in:
Isaac Connor 2019-01-30 16:08:41 -05:00
parent 4bacd26c98
commit 86b7fe5d29
1 changed files with 2 additions and 2 deletions

View File

@ -13,9 +13,9 @@
// Append '?(GET query)' to URL if the GET query is not empty.
var querySuffix = "<?php
if (!empty($_POST["postLoginQuery"])) {
parse_str($_POST["postLoginQuery"], $queryParams);
parse_str($_POST["postLoginQuery"], $queryParams);
echo "?" . http_build_query($queryParams);
}
}
?>";
var newUrl = thisUrl + querySuffix;