I've been seeing this error:

Strict warning: Declaration of geolocation_proximity_views_handler_field_distance::extra_options_validate() should be compatible with that of views_handler::extra_options_validate() in _registry_check_code() (line 3047 of /Users/-----/Sites/-------/drupal/includes/bootstrap.inc).
Strict warning: Declaration of geolocation_proximity_views_handler_sort_distance::extra_options_validate() should be compatible with that of views_handler::extra_options_validate() in _registry_check_code() (line 3047 of /Users/------/Sites/-------/drupal/includes/bootstrap.inc).

Seems to be this difference:
from views_handlers.inc:

<?php
/**
   * Validate the options form.
   */
  function extra_options_validate($form, &$form_state) { }
?>

from geolocation_proximity_views_handler_field_distance.inc and geolocation_proximity_views_handler_sort_distance.inc

<?php
/**
   * Validate the options form.
   */
  function extra_options_validate(&$form, &$form_state) {
    $this->latlng_validate($form['location'], $form_state['values']['options']['location']);
  }
?>
CommentFileSizeAuthor
#1 fix_reference_problem-1637704-initial.patch679 bytesAaronA

Comments

AaronA’s picture

StatusFileSize
new679 bytes

Patch against tag 7.x-2.0-alpha3.

infines’s picture

Status: Active » Needs review
derjochenmeyer’s picture

Version: 7.x-2.0-alpha3 » 7.x-2.x-dev
Status: Needs review » Fixed

Thanks for this patch: Committed.

Side note: Date module uses the same implementation suggested here in
date/date_views/includes/date_views_filter_handler.inc

Status: Fixed » Closed (fixed)

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

Anonymous’s picture

Issue summary: View changes

typo