PluginProbe
CSS & JavaScript Toolbox / 12.0.4
CSS & JavaScript Toolbox v12.0.4
trunk 0.3 0.8 10 10.1 11 11.2 11.3 11.4 11.5 11.6 11.7 11.8 11.9 11.9.1 12 12.0 12.0.1 12.0.3 12.0.4 12.0.5 12.0.6 12.0.7 6.0 6.0.11 All 60 releases
← All changes | controllers/blocks-coupling.php +3 -1 11.212.0.4 View file →
@@ -522,9 +522,11 @@
522 522 $port = ($_SERVER["SERVER_PORT"] != "80") ? ":{$_SERVER["SERVER_PORT"]}" : '';
523 523 // Request URI.
524 524 $requestURI = $_SERVER['REQUEST_URI'];
525 525 // Final URL.
526 - $url = "{$protocol}{$host}{$port}{$requestURI}";
526 + //$url = "{$protocol}{$host}{$port}{$requestURI}";
527 + // Removing port segment from the URL as it is causing bugs.
528 + $url = "{$protocol}{$host}{$requestURI}";
527 529 return $url;
528 530 }
529 531
530 532 /**