When editing an existing "taxonomy:term id" filter which uses a drop down widget, it doesn't show the default values (ie. the values that were already selected).

The following patch fixes this (against rc1 - though at the time of writting this bug is still present in HEAD) :

--- modules/taxonomy.views.inc  (original)
+++ modules/taxonomy.views.inc  (working copy)
@@ -813,6 +813,7 @@
         '#multiple' => TRUE,
         '#options' => $options,
         '#size' => min(9, count($options)),
+        '#default_value' => $this->value?$this->value:array(),
       );
     }

Comments

merlinofchaos’s picture

Status: Active » Fixed

Committed, after code style fixes. (needed spacing around the ternary operators; $this->value needed empty().)

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.