diff --git a/lib/plugin.php b/lib/plugin.php index 1ca5deb5c5..115bb10e01 100644 --- a/lib/plugin.php +++ b/lib/plugin.php @@ -143,17 +143,18 @@ class Plugin $server = common_config('plugins', 'server'); } - if (is_null($server)) { + if (empty($server)) { if ($isHTTPS) { $server = common_config('site', 'sslserver'); - } else { + } + if (empty($server)) { $server = common_config('site', 'server'); } } $path = common_config('plugins', 'path'); - if (is_null($path)) { + if (empty($path)) { $path = common_config('site', 'path') . '/plugins/'; }