summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-02-09 15:35:38 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-02-09 17:40:01 -0500
commit0d586524874560c51277b90f33bcbed164748f6d (patch)
treeba34b850009621e8f59dce8068453980904da570 /lib
parent3e005f2d1bf01c295c132b6ca52e1139ef60b733 (diff)
trac #1160 fix dropdown xmloutput function for the selected attribute and fix newmessage auto-selected dropdown.
Diffstat (limited to 'lib')
-rw-r--r--lib/htmloutputter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php
index 7780b1c19..e2319b1fd 100644
--- a/lib/htmloutputter.php
+++ b/lib/htmloutputter.php
@@ -255,7 +255,7 @@ class HTMLOutputter extends XMLOutputter
foreach ($content as $value => $option) {
if ($value == $selected) {
$this->element('option', array('value' => $value,
- 'selected' => $value),
+ 'selected' => 'selected'),
$option);
} else {
$this->element('option', array('value' => $value), $option);