Index: includes/handlers.inc =================================================================== --- includes/handlers.inc (revision 168) +++ includes/handlers.inc (working copy) @@ -1027,9 +1027,18 @@ else { $operator = "$operator $placeholder"; } - $placeholders = array( - $placeholder => $value, - ) + $this->placeholders; + + if(isset($this->placeholders)) { + $placeholders = array( + $placeholder => $value, + ) + $this->placeholders; + } + else { + $placeholders = array( + $placeholder => $value, + ); + } + $this->handler->query->add_where_expression($options['group'], "$field $operator", $placeholders); } else {