This repository was archived by the owner on Mar 3, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 * Implements hook_install().
1010 */
1111function choropleth_install() {
12- choropleth_udpate_existing_fields ();
12+ choropleth_update_existing_fields ();
1313}
1414
1515/**
1616 * Checks for current implementations of recline and adds additional columns.
1717 */
18- function choropleth_udpate_existing_fields () {
18+ function choropleth_update_existing_fields () {
1919 $fields = field_info_fields();
2020 foreach ($fields as $field_name => $field) {
2121 if ($field['type'] == 'recline_field' && $field['storage']['type'] == 'field_sql_storage') {
@@ -69,7 +69,7 @@ function choropleth_udpate_existing_fields() {
6969 */
7070function choropleth_update_7001(&$sandbox) {
7171 $ret = array();
72- choropleth_udpate_existing_fields ();
72+ choropleth_update_existing_fields ();
7373 return $ret;
7474}
7575
@@ -78,7 +78,7 @@ function choropleth_update_7001(&$sandbox) {
7878 */
7979function choropleth_update_7002(&$sandbox) {
8080 $ret = array();
81- choropleth_udpate_existing_fields ();
81+ choropleth_update_existing_fields ();
8282 return $ret;
8383}
8484
@@ -87,6 +87,6 @@ function choropleth_update_7002(&$sandbox) {
8787 */
8888function choropleth_update_7003(&$sandbox) {
8989 $ret = array();
90- choropleth_udpate_existing_fields ();
90+ choropleth_update_existing_fields ();
9191 return $ret;
9292}
You can’t perform that action at this time.
0 commit comments