$dash_index == strpos($location['postal_code'], '-');
should be
$dash_index = strpos($location['postal_code'], '-');
at line 244
$dash_index == strpos($location['postal_code'], '-');
should be
$dash_index = strpos($location['postal_code'], '-');
at line 244
Comments
Comment #1
smitty commentedLook at: http://drupal.org/node/1056030