Closed (fixed)
Project:
Date
Version:
5.x-1.4
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Mar 2007 at 09:28 UTC
Updated:
31 Oct 2007 at 11:42 UTC
There is
$current = array('' => '<all>', 'now' => t('now'));
in date_views_filters($field) function in date_views.inc.
I think you should use
$current = array('' => t('<all>'), 'now' => t('now'));
But there is '<All>' option exists already in exposed filter, so it whould be better to use this (IMHO):
$current = array('' => '', 'now' => t('now'));
Comments
Comment #1
karens commentedThis has since been fixed.
Comment #2
(not verified) commented