aboutsummaryrefslogtreecommitdiffstats
path: root/include/plugin.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2021-02-02 10:58:10 +0100
committerMario Vavti <mario@mariovavti.com>2021-02-02 10:58:10 +0100
commitf3f49cf80f2441d576d825f116afdb5a66bb7c54 (patch)
tree220f72c418ab07b971de85d431ccb15c671b13e8 /include/plugin.php
parent8b78e18fb8ade1d04dbf2e5152288f6982a462df (diff)
downloadvolse-hubzilla-f3f49cf80f2441d576d825f116afdb5a66bb7c54.tar.gz
volse-hubzilla-f3f49cf80f2441d576d825f116afdb5a66bb7c54.tar.bz2
volse-hubzilla-f3f49cf80f2441d576d825f116afdb5a66bb7c54.zip
fix php8 issues
Diffstat (limited to 'include/plugin.php')
-rw-r--r--include/plugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/plugin.php b/include/plugin.php
index c789ad522..269903373 100644
--- a/include/plugin.php
+++ b/include/plugin.php
@@ -912,7 +912,7 @@ function script_path() {
// Some proxy setups may require using http_host
- if(intval(App::$config['system']['script_path_use_http_host']))
+ if(isset(App::$config['system']['script_path_use_http_host']) && intval(App::$config['system']['script_path_use_http_host']))
$server_var = 'HTTP_HOST';
else
$server_var = 'SERVER_NAME';