=== modified file 'uc_store/includes/summaries.inc'
--- uc_store/includes/summaries.inc	2009-06-10 20:13:57 +0000
+++ uc_store/includes/summaries.inc	2009-07-15 15:48:13 +0000
@@ -95,6 +95,20 @@
         return $form['#title'] .': '. check_plain($form['#default_value']);
 
       case 'select':
+        if (!empty($form['#multiple']) and is_array($form['#default_value'])) {
+          $options = array();
+          foreach ($form['#default_value'] as $value) {
+            if (isset($form['#options'][$value])) {
+              $options[] = $form['#options'][$value];
+            }
+          }
+          // Return an item list of the selected options.
+          return array(array(
+            'data' => $form['#title'].':',
+            'children' => $options,
+          ));
+        }
+        // Else, fall through.
       case 'radios':
         return $form['#title'] .': '. $form['#options'][$form['#default_value']];
 

