(Running v1.4.2.3)
I'm embedding IPTC tags with B&W in my black-and-white photos. This causes weird behavior when I am browsing.
If I click the B&W link in the tag list, the search brings up "B"
If I type "B&W" with quotes, the images show up, but the "page 2" link doesn't work.
Is there some config setting I should use, or should I just give up and start tagging them "Black and White"?
Comments
So if you can, see if the problem exists with the development build. Also check your database to see if the tag is represented correctly. It should have the naked apersand, not an html encoded one.
`
mysql> select name, length(name) from zenphoto_tags where name like 'B%W';
+------+--------------+
| name | length(name) |
+------+--------------+
| B&W | 3 |
+------+--------------+
1 row in set (0.00 sec)
`
I'll take a look at the development build. Thanks for the info!