Tweak to use site/server fallback when no plugins/sslserver or site/sslserver and generating plugin CSS

This commit is contained in:
Brion Vibber 2011-02-09 00:04:01 -08:00
parent 75bf756111
commit 9efedfc217

View File

@ -146,7 +146,8 @@ class Plugin
if (is_null($server)) {
if ($isHTTPS) {
$server = common_config('site', 'sslserver');
} else {
}
if (is_null($server)) {
$server = common_config('site', 'server');
}
}