mirror of
https://github.com/standardebooks/web.git
synced 2025-07-15 02:46:46 -04:00
Improve tag and collection browsing and pagination
This commit is contained in:
parent
cfa54122d6
commit
6f86a1899b
4 changed files with 32 additions and 11 deletions
|
@ -521,7 +521,7 @@ class Ebook{
|
|||
|
||||
public function IsInCollection(string $collection): bool{
|
||||
foreach($this->Collections as $c){
|
||||
if(strtolower($c->Name) == strtolower($collection)){
|
||||
if(strtolower(Formatter::RemoveDiacritics($c->Name)) == strtolower(Formatter::RemoveDiacritics($collection))){
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue