mirror of
https://github.com/Rouji/single_php_filehost.git
synced 2025-04-04 16:39:34 +00:00
don't append ?hupl and ?sharex in the hupl and sharex configs
herp derp
This commit is contained in:
parent
8ecbe201ba
commit
10b37a4d83
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user