Hi,

I can't see the configuration page.

Can you tell me where is it?

Thanks in advance

CommentFileSizeAuthor
#7 form_beautifier-635934.diff334 bytesdavidburns

Comments

davidburns’s picture

rokr’s picture

Confirming. There is no menu and no settings page.

cheers, Ronald

davidburns’s picture

Priority: Normal » Critical

Confirmed. Shows up fine in admin_menu, not showing up on /admin or /admin/settings page.

bumped to Critical

dave reid’s picture


function form_beautifier_menu() {
7 $items = array();
8 $items['admin/settings/form_beautifier'] = array(
9 'title' => 'Form Beautifier',
10 'description' => 'Customize Forms with jQuery Plugins.',
11 'page callback' => 'drupal_get_form',
12 'page arguments' => array('form_beautifier_settings'),
13 'access arguments' => array('administer site configuration'),
14 'file' => 'form_beautifier.admin.inc',
15 'type' => MENU_DEFAULT_LOCAL_TASK,
16 );
17 return $items;
18 }

The type value should be excluded because it's the wrong value and because when it's not provided it defaults to the proper MENU_NORMAL_ITEM.

hadsie’s picture

Status: Active » Reviewed & tested by the community

Confirming that changing to MENU_NORMAL_ITEM fixes this for me.

nbluto’s picture

I second that this fix works.

davidburns’s picture

StatusFileSize
new334 bytes

here's the one line patch, and I've committed to repository.

davidburns’s picture

Status: Reviewed & tested by the community » Closed (fixed)

closed