1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-03 16:09:33 +00:00

don't append ?hupl and ?sharex in the hupl and sharex configs

herp derp
This commit is contained in:
Andreas Hackl 2023-04-07 00:15:05 +09:00
parent 8ecbe201ba
commit 10b37a4d83

View File

@ -248,7 +248,7 @@ function send_text_file(string $filename, string $content) : void
function send_sharex_config() : void
{
$name = $_SERVER['SERVER_NAME'];
$site_url = CONFIG::SITE_URL();
$site_url = str_replace("?sharex", "", CONFIG::SITE_URL());
send_text_file($name.'.sxcu', <<<EOT
{
"Name": "$name",
@ -265,7 +265,7 @@ EOT);
function send_hupl_config() : void
{
$name = $_SERVER['SERVER_NAME'];
$site_url = CONFIG::SITE_URL();
$site_url = str_replace("?hupl", "", CONFIG::SITE_URL());
send_text_file($name.'.hupl', <<<EOT
{
"name": "$name",