FTB-Gamepedia / Tilesheets

Adds a parser function that looks up a table for an item and returns the requested image.
MIT License
7 stars 5 forks source link

TileList search case sensitivity #59

Open elifoster opened 7 years ago

elifoster commented 7 years ago

It's kind of hard to search for items there because of the exactitude you have to use for an item, take for instance searching "conduit" and on "mod" you input "EIO", if I do that, it doesn't give back any results, but under "mod: EIO" only, there's like 5 or 6 items with "conduit" on its name, I think it's because it case sensitive.

From Frenchiveruti on Template talk:Navbox Ender IO

elifoster commented 7 years ago

This is, like #57 , not able to be reproduced for me on my local wiki. Doing SELECT COUNT(entry_id) AS row_count WHERE item_name REGEXP 'skull'; has the same effect as SELECT COUNT(entry_id) AS row_count WHERE LOWER(item_name) REGEXP 'skull';.