There is a small typo in the "Is not equal to" operator in views_handler_filter_string.inc:
'!=' => array(
'title' => t('Is not equal to'),
'short' => t('='),
'method' => 'op_equal',
'values' => 1,
),Should be (note the 'short' value):
'!=' => array(
'title' => t('Is not equal to'),
'short' => t('!='),
'method' => 'op_equal',
'values' => 1,
),-mike
Comments
Comment #1
merlinofchaos commentedGood catch, thanks!
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.