Hi there!
I'm using some page reference fields to create lists of tags, categories, years, etc.. I'm able to find the pages like so:
$pages->find("template=project, {$filter}={$page->title}");
Which dynamically does something like:
$pages->find("template=project, tags=Experimental");
Only if the value (the page name, like "Experimental") starts with letters. If it starts with numbers, find returns nothing.
Why is this and how can I fix it?