Last modified: 2008-08-11 20:30:50 UTC
When using Magic words (such as {{PAGENAME}}) with quotes, this function do not match to " but match to ". Simple test case under [["]] could be: {{#ifeq: " | " | 1 | 0}} (return 1 as supposed) {{#ifeq: " | {{PAGENAME}} | 1 | 0}} (return 0, should return 1) {{#ifeq: " | {{PAGENAME}} | 1 | 0}} (return 1, should return 0) {{#ifeq: {{localurl:"}} | {{localurl:{{PAGENAME}}}} | 1 | 0}} (return 1 as supposed)
On [["]] {{PAGENAME}} returns " to prevent parsing. This is not a bug in #ifeq.