? .svn ? default_icon.png Index: menu_icons.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/menu_icons/menu_icons.module,v retrieving revision 1.8 diff -u -p -r1.8 menu_icons.module --- menu_icons.module 5 May 2010 11:57:10 -0000 1.8 +++ menu_icons.module 5 May 2010 12:27:43 -0000 @@ -65,7 +65,7 @@ function menu_icons_form_alter(&$form, $ $form['icon']['icon_path'] = array( '#type' => 'textfield', '#title' => t('Path to the icon'), - '#default_value' => $options['menu_icon']['path'], + '#default_value' => (isset($options['menu_icon']['path']) ? $options['menu_icon']['path'] : variable_get('menu_icons_default_icon', drupal_get_path('module', 'menu_icons') .'/images/default_icon.png')), '#description' => t('The path to the image you would like to use as a background image for this menu item.') ); $form['icon']['icon_upload'] = array(