Closed (fixed)
Project:
ThemeKey
Version:
6.x-2.0-beta3
Component:
Code / API
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
22 Dec 2009 at 11:42 UTC
Updated:
5 Jan 2010 at 13:30 UTC
Jump to comment: Most recent file
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.