#1078570 by duellj: Search filter doesn't work for attachments.
#1068108 by boombatower: Allow row_class to contain multiple classes.
#1078738 by dereine: Add a serialized data field handler and set users.data to it.
+#1051308 by dereine: Backport a test fix for views_handler_filter_date from d7v3ui.
Views 3.x-7.x-alpha1 (05-Jan-2011)
==================================
// have a string if using offset.
$placeholder1 = $this->placeholder();
$placeholder2 = $this->placeholder();
- $this->query->add_where_expression($this->options['group'], "$field BETWEEN $placeholder1 AND $placeholder2", array($placeholder1 => $a, $placeholder2 => $b));
+ $operator = strtoupper($this->operator);
+ $this->query->add_where_expression($this->options['group'], "$field $operator $placeholder1 AND $placeholder2", array($placeholder1 => $a, $placeholder2 => $b));
}
function op_simple($field) {