Code Duplication    Length = 3-3 lines in 2 locations

manager/includes/src/Core.php 2 locations

@@ 2791-2793 (lines=3) @@
2788
2789
        $url_path = $q;//LANG
2790
2791
        if (substr($url_path, 0, $len_base_url) === $this->config['base_url']) {
2792
            $url_path = substr($url_path, $len_base_url);
2793
        }
2794
2795
        $strictURL = $this->toAlias($this->makeUrl($this->documentIdentifier));
2796
@@ 2797-2799 (lines=3) @@
2794
2795
        $strictURL = $this->toAlias($this->makeUrl($this->documentIdentifier));
2796
2797
        if (substr($strictURL, 0, $len_base_url) === $this->config['base_url']) {
2798
            $strictURL = substr($strictURL, $len_base_url);
2799
        }
2800
        $http_host = $_SERVER['HTTP_HOST'];
2801
        $requestedURL = "{$scheme}://{$http_host}" . '/' . $q; //LANG
2802