Some Properties might contain multiple values. For example system:query_param contains two values for this url:
http://www.foo.bar/node?param=17¶m=23
system:query_param = param=17
system:query_param = param=23
A Theme Switching Rule like system:query_param < param=20 currently evaluates to TRUE because param=17 is lower than param=20. But it should evaluate to FALSE because not all query params are lower.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 665710-themekey-multiple-values-strategy.patch | 3.69 KB | mkalkbrenner |
| themekey-multiple-values-strategy.patch | 2.41 KB | mkalkbrenner |
Comments
Comment #1
mkalkbrennerfirst patch missed some cases. new one also simplifies the code.