Skip to content
This repository has been archived by the owner on Mar 3, 2022. It is now read-only.

Commit

Permalink
spelling: update
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Oct 16, 2016
1 parent 6cc7aae commit 5051d86
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions choropleth.install
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
* Implements hook_install().
*/
function choropleth_install() {
choropleth_udpate_existing_fields();
choropleth_update_existing_fields();
}

/**
* Checks for current implementations of recline and adds additional columns.
*/
function choropleth_udpate_existing_fields() {
function choropleth_update_existing_fields() {
$fields = field_info_fields();
foreach ($fields as $field_name => $field) {
if ($field['type'] == 'recline_field' && $field['storage']['type'] == 'field_sql_storage') {
Expand Down Expand Up @@ -69,7 +69,7 @@ function choropleth_udpate_existing_fields() {
*/
function choropleth_update_7001(&$sandbox) {
$ret = array();
choropleth_udpate_existing_fields();
choropleth_update_existing_fields();
return $ret;
}

Expand All @@ -78,7 +78,7 @@ function choropleth_update_7001(&$sandbox) {
*/
function choropleth_update_7002(&$sandbox) {
$ret = array();
choropleth_udpate_existing_fields();
choropleth_update_existing_fields();
return $ret;
}

Expand All @@ -87,6 +87,6 @@ function choropleth_update_7002(&$sandbox) {
*/
function choropleth_update_7003(&$sandbox) {
$ret = array();
choropleth_udpate_existing_fields();
choropleth_update_existing_fields();
return $ret;
}

0 comments on commit 5051d86

Please sign in to comment.