When installing
Parse error: syntax error, unexpected T_LNUMBER in /var/www/www.astrocalc.com/drupal/sites/all/modules/daterange/daterange.module on line 304

this is due to a missing comma (,) in this line:

$value1 = _get_date_value($filter['value']['date1'], 23, 59 59);

should be
$value1 = _get_date_value($filter['value']['date1'], 23, 59, 59);

Comments

douggreen’s picture

Status: Active » Fixed

Wow, that's a pretty small/big bug to have not found yet. I think I added the 'after' logic at least a week ago. Thanks for catching this, and more thanks for providing the line with the problem.

Anonymous’s picture

Status: Fixed » Closed (fixed)