s/isHTTPS/useHTTPS/ for HTTPS URL generation

This commit is contained in:
Mikael Nordfeldth 2016-02-10 00:38:14 +01:00
parent eaa394ed7d
commit dcf29c2a07
1 changed files with 4 additions and 6 deletions

View File

@ -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;
}