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

merlinofchaos’s picture

Status: Active » Fixed

Good catch, thanks!

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.