Closed (fixed)
Project:
Views (for Drupal 7)
Version:
6.x-2.1
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Oct 2008 at 02:29 UTC
Updated:
11 Nov 2008 at 20:21 UTC
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.