Skip to content

Commit

Permalink
Move Page settings to seperate fieldset.
Browse files Browse the repository at this point in the history
  • Loading branch information
Raymond Jelierse committed Jul 7, 2011
1 parent da9b1a4 commit c1b6296
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions facebook.module
Expand Up @@ -118,11 +118,15 @@ function facebook_settings_form() {
'#disabled' => TRUE,
),
),
'facebook_page' => array(
'#type' => 'textfield',
'#title' => t('Facebook page'),
'#default_value' => variable_get('facebook_page', ''),
'#description' => t('If you want to associate your website with an existing Facebook Page, instead of your website\'s URL, enter the page id here.'),
'page' => array(
'#type' => 'fieldset',
'#title' => t('Page'),
'facebook_page' => array(
'#type' => 'textfield',
'#title' => t('Page URL'),
'#default_value' => variable_get('facebook_page', ''),
'#description' => t('If you want to associate your website with an existing Facebook Page, instead of your website\'s URL, enter the page URL here.'),
),
),
));
}
Expand Down

0 comments on commit c1b6296

Please sign in to comment.