summaryrefslogtreecommitdiff
path: root/UI/elements.html
diff options
context:
space:
mode:
authortetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-10-05 22:00:53 +0000
committertetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2007-10-05 22:00:53 +0000
commit6bb4dec3405f4b892d068960067f990e42abe310 (patch)
treec4236c5ee6b9ba823c014e25fd1e860bcb058644 /UI/elements.html
parent8657a2038dba371b50a084e3838dd39100b2a6e1 (diff)
XHTML validity fix for selected options
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1705 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI/elements.html')
-rw-r--r--UI/elements.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/UI/elements.html b/UI/elements.html
index ebe5f5c4..c7893831 100644
--- a/UI/elements.html
+++ b/UI/elements.html
@@ -140,7 +140,7 @@
<?lsmb BLOCK option ?>
<?lsmb # Selected is a special case -- no attribute key, so it's handled here by looking for the option value in the default_values key.
IF element_data.defined('default_values') AND element_data.default_values.grep("^${option_data.value}$").size;
- option_data.selected = " selected";
+ option_data.selected = ' selected="selected"';
ELSE;
option_data.selected = "";
END;