]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
A bit better test.
authorRoland Haeder <roland@mxchange.org>
Sat, 12 Sep 2015 06:31:50 +0000 (08:31 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 29 Mar 2020 22:21:13 +0000 (00:21 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
lib/util.php

index 704dd0bf4ca39863d6157e2edf5a4031e3c9d280..5ab33e9c971e3962eadf6609d2da3e49918a1f90 100644 (file)
@@ -1395,7 +1395,7 @@ function common_local_url($action, $args=null, $params=null, $fragment=null, $ad
 
 function common_path($relative, $ssl=false, $addSession=true)
 {
-    $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
+    $pathpart = (!empty(common_config('site', 'path'))) ? common_config('site', 'path') . '/' : '';
 
     if ($ssl && GNUsocial::useHTTPS()) {
         $proto = 'https';