X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fplugin.php;h=04df51f824206a843e12257d168a249bbe3e6222;hb=8a4bec811b07a0ed9d76d0aceb03855c91a67242;hp=28040d3f84f22e1faad9348f7e93faf0c5e7cd6e;hpb=3a910d8c8c6cd9c5170f59aa184ee5f614803fe9;p=quix0rs-gnu-social.git diff --git a/lib/plugin.php b/lib/plugin.php index 28040d3f84..04df51f824 100644 --- a/lib/plugin.php +++ b/lib/plugin.php @@ -199,16 +199,14 @@ class Plugin static function staticPath($plugin, $relative) { - $isHTTPS = GNUsocial::isHTTPS(); - - if ($isHTTPS) { + if (GNUsocial::useHTTPS()) { $server = common_config('plugins', 'sslserver'); } else { $server = common_config('plugins', 'server'); } if (empty($server)) { - if ($isHTTPS) { + if (GNUsocial::useHTTPS()) { $server = common_config('site', 'sslserver'); } if (empty($server)) { @@ -216,7 +214,7 @@ class Plugin } } - if ($isHTTPS) { + if (GNUsocial::useHTTPS()) { $path = common_config('plugins', 'sslpath'); } else { $path = common_config('plugins', 'path'); @@ -239,7 +237,7 @@ class Plugin $path = '/'.$path; } - $protocol = ($isHTTPS) ? 'https' : 'http'; + $protocol = GNUsocial::useHTTPS() ? 'https' : 'http'; return $protocol.'://'.$server.$path.$plugin.'/'.$relative; }