Improve tag and collection browsing and pagination

This commit is contained in:
Alex Cabal 2019-02-26 18:28:45 -06:00
parent cfa54122d6
commit 6f86a1899b
4 changed files with 32 additions and 11 deletions

View file

@ -5,7 +5,7 @@ class Collection{
public function __construct(string $name){
$this->Name = $name;
$this->Url = '/collections/' . strtolower(str_replace(' ', '-', Formatter::ToPlainText($this->Name))) . '/';
$this->Url = '/collections/' . strtolower(str_replace(' ', '-', Formatter::ToPlainText(Formatter::RemoveDiacritics($this->Name)))) . '/';
}
}
?>