Commit d6d60d8f by Scott

Fix favoriting of accented tags

Fixes #47.
parent ebd8b8b5
...@@ -1026,8 +1026,8 @@ ...@@ -1026,8 +1026,8 @@
{ {
return array( return array(
'columns' => array('wordid', 'word', 'tagcount'), 'columns' => array('wordid', 'word', 'tagcount'),
'source' => '^words WHERE word=$', 'source' => '^words WHERE word=$ AND word=$ COLLATE utf8_bin',
'arguments' => array($tag), 'arguments' => array($tag, qa_strtolower($tag)),
'single' => true, 'single' => true,
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment