Hi, I have this notice in admin/config/content/quickpost_bookmarklet
thanks

Notice: Undefined index: #attributes in quickpost_bookmarklet_settings_form() (line 29 of C:\..\drupal-7.8\sites\all\modules\quickpost_bookmarklet\quickpost_bookmarklet.module).
Notice: Undefined index: class in quickpost_bookmarklet_settings_form() (line 29 of C:\..\drupal-7.8\sites\all\modules\quickpost_bookmarklet\quickpost_bookmarklet.module).

Comments

BrockBoland’s picture

Assigned: Unassigned » BrockBoland

Just wanted to let you know that I saw this. I'm away on vacation right now, but I'll look into it when I'm back in action.

jamestombs’s picture

Lines 28-29:

function quickpost_bookmarklet_settings_form($form, &$form_state) {
  $form['#attributes']['class'] .= ' quickpost_bookmarklet_settings_form';

Should be:

function quickpost_bookmarklet_settings_form(&$form_state) {
  $form['#attributes']['class'] = ' quickpost_bookmarklet_settings_form';
BrockBoland’s picture

Status: Active » Fixed

Committed 7a6c7ca. This will be in the next release soon here. Sorry it took me so long to make this minor change.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.