Code Duplication    Length = 3-3 lines in 2 locations

manager/includes/src/Core.php 2 locations

@@ 2516-2518 (lines=3) @@
2513
2514
        $url_path = $q;//LANG
2515
2516
        if (substr($url_path, 0, $len_base_url) === $this->config['base_url']) {
2517
            $url_path = substr($url_path, $len_base_url);
2518
        }
2519
2520
        $strictURL = $this->toAlias($this->makeUrl($this->documentIdentifier));
2521
@@ 2522-2524 (lines=3) @@
2519
2520
        $strictURL = $this->toAlias($this->makeUrl($this->documentIdentifier));
2521
2522
        if (substr($strictURL, 0, $len_base_url) === $this->config['base_url']) {
2523
            $strictURL = substr($strictURL, $len_base_url);
2524
        }
2525
        $http_host = $_SERVER['HTTP_HOST'];
2526
        $requestedURL = "{$scheme}://{$http_host}" . '/' . $q; //LANG
2527