]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Revert "When viewing a page in https, all links to non-actions (links to CSS, JS...
authorEvan Prodromou <evan@status.net>
Wed, 23 Sep 2009 13:34:55 +0000 (09:34 -0400)
committerEvan Prodromou <evan@status.net>
Wed, 23 Sep 2009 13:34:55 +0000 (09:34 -0400)
This reverts commit 20997619b353faa94591800fbfc02bc19a4cdce3.

The commit doesn't take into account having different servers (theme
server, avatar server) and being able to set HTTPS for some but not all.

lib/util.php

index 5b57b79b5498151a8594c6ec36eed0435867db75..b831859e993392d14de493f3ae349d9e61e919e2 100644 (file)
@@ -750,18 +750,8 @@ function common_local_url($action, $args=null, $params=null, $fragment=null)
     return $url;
 }
 
-function common_path($relative, $ssl=null)
+function common_path($relative, $ssl=false)
 {
-    if($ssl==null) {
-        //ssl was not specifically requested
-        if( $_SERVER['HTTPS'] && $_SERVER['HTTPS']!="off" ) {
-            //currently in https, so stay in https
-            $ssl=true;
-        } else {
-            //not in https, so stay not in https
-            $ssl=false;
-        }
-    }
     $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
 
     if (($ssl && (common_config('site', 'ssl') === 'sometimes'))