mirror of
https://github.com/standardebooks/web.git
synced 2025-07-20 05:14:48 -04:00
Fix searching for words adjacent to an underscore in EbookWwwFilesystemPath
This commit is contained in:
parent
e3ea224256
commit
53dc36d25a
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ class Library{
|
||||||
left join Tags t using (TagId)
|
left join Tags t using (TagId)
|
||||||
where ' . $statusCondition . '
|
where ' . $statusCondition . '
|
||||||
and (art.Name regexp ?
|
and (art.Name regexp ?
|
||||||
or art.EbookWwwFilesystemPath regexp ?
|
or replace(art.EbookWwwFilesystemPath, "_", " ") regexp ?
|
||||||
or a.Name regexp ?
|
or a.Name regexp ?
|
||||||
or aan.Name regexp ?
|
or aan.Name regexp ?
|
||||||
or t.Name regexp ?)
|
or t.Name regexp ?)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue