Closed (fixed)
Project:
Form Beautifier
Version:
6.x-1.0-alpha1
Component:
User interface
Priority:
Critical
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
18 Nov 2009 at 09:05 UTC
Updated:
14 Oct 2010 at 15:33 UTC
Jump to comment: Most recent file
Comments
Comment #1
davidburnsShould be http://example.com/admin/settings/form_beautifier
Comment #2
rokrConfirming. There is no menu and no settings page.
cheers, Ronald
Comment #3
davidburnsConfirmed. Shows up fine in admin_menu, not showing up on /admin or /admin/settings page.
bumped to Critical
Comment #4
dave reidfunction 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.
Comment #5
hadsie commentedConfirming that changing to MENU_NORMAL_ITEM fixes this for me.
Comment #6
nbluto commentedI second that this fix works.
Comment #7
davidburnshere's the one line patch, and I've committed to repository.
Comment #8
davidburnsclosed