]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Further tweak for ssl paths in plugin check (sslserver may be set but empty)
authorBrion Vibber <brion@pobox.com>
Wed, 9 Feb 2011 08:09:25 +0000 (00:09 -0800)
committerBrion Vibber <brion@pobox.com>
Wed, 9 Feb 2011 08:09:25 +0000 (00:09 -0800)
lib/plugin.php

index 2b34834577f3ba9651742b03612a4eb973e872ec..115bb10e01247c206808ccb5943aaa3aa92a1c04 100644 (file)
@@ -143,18 +143,18 @@ class Plugin
             $server = common_config('plugins', 'server');
         }
 
-        if (is_null($server)) {
+        if (empty($server)) {
             if ($isHTTPS) {
                 $server = common_config('site', 'sslserver');
             }
-            if (is_null($server)) {
+            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/';
         }