diff options
Diffstat (limited to 'php/node.php')
-rw-r--r-- | php/node.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/php/node.php b/php/node.php index e0f7ceb..666d540 100644 --- a/php/node.php +++ b/php/node.php @@ -98,10 +98,10 @@ require_once "user.php"; } if($use_https) { - return "https://".$domain_name."/share?file=".$code; + return "https://".$domain_name."/php/share.php?file=".$code; }else { - return "http://".$domain_name."/share?file=".$code; + return "http://".$domain_name."/php/share.php?file=".$code; } } |