diff --git a/theme-settings.php b/theme-settings.php index 42b5ca7..eb933c1 100644 --- a/theme-settings.php +++ b/theme-settings.php @@ -15,7 +15,7 @@ function basic_form_system_theme_settings_alter(&$form, $form_state) { '#description' => t('Check this if you wish to replace the default tabs by the ZEN tabs'), '#default_value' => theme_get_setting('basic_tabs'), ); - + $form['options_settings']['basic_breadcrumb'] = array( '#type' => 'fieldset', '#title' => t('Breadcrumb settings'), @@ -58,7 +58,6 @@ function basic_form_system_theme_settings_alter(&$form, $form_state) { '#description' => t('Useful when the breadcrumb is not placed just before the title.'), '#suffix' => '', // #div-basic-breadcrumb ); -<<<<<<< HEAD //IE specific settings. $form['options_settings']['basic_ie'] = array( @@ -84,24 +83,17 @@ function basic_form_system_theme_settings_alter(&$form, $form_state) { $form['options_settings']['basic_ie']['basic_ie_enabled_css']['basic_ie_enabled_versions'] = array( '#type' => 'checkboxes', '#options' => array( - 'ie6' => t('Internet Explorer 6'), + 'ie6' => t('Internet Explorer 6'), 'ie7' => t('Internet Explorer 7'), 'ie8' => t('Internet Explorer 8'), ), '#default_value' => theme_get_setting('basic_ie_enabled_versions'), ); -======= ->>>>>>> 7.x-2.x - + $form['options_settings']['wireframe_mode'] = array( '#type' => 'checkbox', '#title' => t('Wireframe Mode - Display borders around main layout elements'), -<<<<<<< HEAD - '#description' => t('Wireframes are useful when prototyping a website.', - array('!link' => 'http://www.boxesandarrows.com/view/html_wireframes_and_prototypes_all_gain_and_no_pain')), -======= '#description' => t('Wireframes are useful when prototyping a website.', array('!link' => 'http://www.boxesandarrows.com/view/html_wireframes_and_prototypes_all_gain_and_no_pain')), ->>>>>>> 7.x-2.x '#default_value' => theme_get_setting('wireframe_mode'), ); $form['options_settings']['clear_registry'] = array( @@ -110,5 +102,5 @@ function basic_form_system_theme_settings_alter(&$form, $form_state) { '#description' =>t('During theme development, it can be very useful to continuously rebuild the theme registry. WARNING: this is a huge performance penalty and must be turned off on production websites.', array('!link' => 'http://drupal.org/node/173880#theme-registry')), '#default_value' => theme_get_setting('clear_registry'), ); - + }