Warning: Parameter 1 to timelinemap_admin_settings() expected to be a reference, value given in drupal_retrieve_form() (line 785 of /var/aegir/platforms/7/servers/drupal-7.10/includes/form.inc).

I get the above error
admin/settings/timelinemap

Comments

edouard.lopez’s picture

I "solve" this issue by changing the reference nature of parameter to a value parameter, i.e. remove the &
original:

function timelinemap_admin_settings(&$form_state)

change to :

function timelinemap_admin_settings($form_state) 

As I'm still unable to get a working view based timelineMap but only remove the error message, I'll suggest you to test this bug further.

dkian’s picture

Status: Active » Fixed

great! That works. For others interested: This can be fixed in the timelinemap.module file.

Status: Fixed » Closed (fixed)

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