Skip to content
Snippets Groups Projects
Commit 7dadbae1 authored by Brandon Bergren's avatar Brandon Bergren
Browse files

Fix form parameters as per #571086.

parent d6832fef
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ function gmap_macro_builder_menu() { ...@@ -54,7 +54,7 @@ function gmap_macro_builder_menu() {
* Fields to hide from the map. (See code for details.) * Fields to hide from the map. (See code for details.)
* Suggestions for better ways of doing this welcome! * Suggestions for better ways of doing this welcome!
*/ */
function gmap_macro_builder_form(&$form_state, $settings = array(), $hide = array()) { function gmap_macro_builder_form($form, &$form_state, $settings = array(), $hide = array()) {
$path = drupal_get_path('module', 'gmap'); $path = drupal_get_path('module', 'gmap');
$form['macroform'] = array( $form['macroform'] = array(
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* GMap settings form. * GMap settings form.
*/ */
function gmap_admin_settings(&$form_state) { function gmap_admin_settings($form, &$form_state) {
// Reset the icondata cache. // Reset the icondata cache.
gmap_get_icondata(TRUE); gmap_get_icondata(TRUE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment