I have just install helptip on 4.7.4 Drupal.
If i go to >Admin >Settings >Helptip Settings i'v got the following error :
warning: Missing argument 2 for drupal_get_form() in /srv/www/htdocs/www-public-80/includes/form.inc on line 61. from both the Hepltips setting page and the watchdog.

Comments

miniwark’s picture

The same issue occur for the HEAD file.

Dave Cohen’s picture

The code calls drupal_get_form following an example on drupal.org, although I'm having trouble finding it now. Also I don't have the problem you report. Which version of PHP are you using?

can you try changing these lines:

       'callback' => 'drupal_get_form',
       'callback arguments' => 'helptip_settings_form',

to read:

       'callback' => 'drupal_get_form',
       'callback arguments' => array('helptip_settings_form', array()),

And let me know if that solves the problem? Thanks.