@@ -68,7 +68,7 @@ function taxonomy_display_admin_form(&$form, &$form_state) {
// Add selection for adding taxonomy term core feed to page
$fieldset['add_feed']=array(
'#default_value'=>$stored_settings['add_feed'],
'#default_value'=>$stored_settings->add_feed,
'#description'=>t('Drupal, by default, includes a feed of content referencing the term, by unchecking this you can prevent the feed from being added.'),
'#title'=>t('Include feed'),
'#type'=>'checkbox',
...
...
@@ -204,7 +204,7 @@ function taxonomy_display_field_ui_layouts_validate($form, &$form_state) {
* @param array|null $form_state
* The form state array.
* @param $stored_settings
* Associated array from taxonomy_display_fetch_taxonomy_display().
* Object from taxonomy_display_fetch_taxonomy_display().
*
* @return void
*
...
...
@@ -230,7 +230,7 @@ function _taxonomy_display_admin_form_build_plugin_form($type, &$fieldset, &$for
// Note that if providing translations for this module you must provide a
// translation for this watchdog warning for each $value.
watchdog('taxonomy_display','The taxonomy '.$v['short'].' plugin assigned to the %name vocabulary is missing, Drupal default settings were used instead.',array('%name'=>$machine_name),WATCHDOG_WARNING);