Inital commit

This commit is contained in:
2020-11-19 15:36:28 +01:00
parent 71f32f83d3
commit 66ce4ee218
18077 changed files with 2166122 additions and 35184 deletions

View File

@@ -32,6 +32,7 @@ class RewritingResolver
public $locale;
public $otherParameters;
public $redirectedToUrl;
public $rewrittenUrl;
public function __construct($url = null)
{
@@ -46,6 +47,7 @@ class RewritingResolver
{
$rewrittenUrl = ltrim($rewrittenUrl, '/');
$rewrittenUrl = urldecode($rewrittenUrl);
$this->rewrittenUrl = $rewrittenUrl;
$this->search = $this->rewritingUrlQuery->getResolverSearch($rewrittenUrl);
if ($this->search->count() == 0) {
@@ -78,5 +80,4 @@ class RewritingResolver
return $otherParameters;
}
}