When clicking "Apply" on the start and end dates, the following errors are returned...

Notice: Undefined index: Start_date in ga_node_reports_analytics_form_submit() (line 203 of /var/www/vhosts/XXXXXXXXX/httpdocs/sites/all/modules/contrib/ga_node_reports/ga_node_reports.pages.inc).

Notice: Undefined index: End_date in ga_node_reports_analytics_form_submit() (line 204 of /var/www/vhosts/XXXXXXXX/httpdocs/sites/all/modules/contrib/ga_node_reports/ga_node_reports.pages.inc).

Looking at ga_node_reports_pages.inc

There is a problem with the capital letter, but it should all be low case.

Line 203 should be...
'start_date' => $form_state['input']['start_date'],

Line 204 should be....
'end_date' => $form_state['input']['end_date'],

Comments

Collins405 created an issue. See original summary.

Collins405’s picture

Issue summary: View changes
Collins405’s picture

Issue summary: View changes
dieuwe’s picture

Status: Active » Needs review
StatusFileSize
new635 bytes

Patch for the above changes.

astonvictor’s picture

Status: Needs review » Reviewed & tested by the community

Works for me.

szeidler’s picture

The patch is working fine for me. Should be committed.

  • saesa committed d77ee59 on 7.x-1.x
    Issue #2980434 by dieuwe: Date Filters Do Not Work
    
saesa’s picture

saesa’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

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