Downloads
Download tar.gz
1.63 MB
MD5: 3934a6a9cf54ac6d0012d22f79901505
SHA-1: cf8321042a8800037423ec13e1880cd5d4925fc0
SHA-256: 357dda1270cac284aaf2ccecd388f5b024b5cba6ef745659b9b8f083a30fcaa9
Download zip
1.76 MB
MD5: d6078f795e95b9bdd49123dc1da7dc69
SHA-1: 81210c52b95cf6a7e8a1431c4d6528445507c28d
SHA-256: 13e48bc7a1d7a3dbdf493d878e025db0bdb1da4fb14a30eddbedd829786e1feb
Release notes
This is mainly released now because people keep running into #317998: preg_match() expects parameter 2 to be string, array given w pliku /mydrupaldir/includes/bootstrap.inc, linia 670. and re-reporting it.
Changes since DRUPAL-6--3-0-RC1:
- Although I can't fix the update warnings proper, I can inform the user why they happen, reduce them, and repair the stuff reported in #317823.
- #317998 by szy, mburak: Don't attempt to tokenize arrays.
- #142272 by thierry_gd: Better province names for Provence-Alpes-Cote d'Azur in location.fr.inc.
- Add function location_province_code().
- Fix $op 'delete' on hook_locationapi().
- API CHANGE: Use location_save_locations() with an empty array instead of deleting rows from {location_instance}. This lets us have "real" deletion instead of relying on garbage collection.
Before:
db_query("DELETE FROM {location_instance} WHERE genid = '%s'", 'mykey:'. $obj->id);After:
$locations = array(); location_save_locations($locations, array('genid' => 'mykey:'. $obj->id)); - Remove garbage collection routine and UI from settings page. References are checked automatically now.
- Slight fix to #305474, noticed by sterwa: Change the second 'ro' in the list to 'ru'.
- Pull the new location_search.module from DRUPAL-5--3 in preparation for D6 porting.
- Port the new location_search module to Drupal 6.
- Remove undefined variable.
- Add a function, location_check_coordinates(), to centralize the emptiness checks.
Fix map centering when editing locations with LOCATION_LATLON_UNDEFINED coordinates.
See [#317159]