diff options
author | Kevin Chabowski <kevin@kch42.de> | 2012-01-31 00:22:26 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2012-01-31 00:22:26 +0100 |
commit | f1391f02d0167fd24b0bda731a20a972cb0a8163 (patch) | |
tree | 8c2ec9ff32a4e2b1786c0ff8404de023d747ffb2 /ratatoeskr/templates/src/systemtemplates | |
parent | 787e70f26bc02f5e11ad297629a0543c8d3adcda (diff) | |
download | ratatoeskr-cms-f1391f02d0167fd24b0bda731a20a972cb0a8163.tar.gz ratatoeskr-cms-f1391f02d0167fd24b0bda731a20a972cb0a8163.tar.bz2 ratatoeskr-cms-f1391f02d0167fd24b0bda731a20a972cb0a8163.zip |
Fixed article editor. Again.
* Fixed last bugfix -.-
* <option name...> --> <option value...>
I don't know how this had worked at all before...
Diffstat (limited to 'ratatoeskr/templates/src/systemtemplates')
-rw-r--r-- | ratatoeskr/templates/src/systemtemplates/content_write.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ratatoeskr/templates/src/systemtemplates/content_write.html b/ratatoeskr/templates/src/systemtemplates/content_write.html index 063fad1..a996a5b 100644 --- a/ratatoeskr/templates/src/systemtemplates/content_write.html +++ b/ratatoeskr/templates/src/systemtemplates/content_write.html @@ -33,7 +33,7 @@ <ste:get_translation for="article_section" />: <select name="section" class="fullwidth"> <ste:foreach array="sections" value="section_name"> - <option name="<ste:escape>$section_name</ste:escape>"?{~{$section_name|eq|$article_section}| selected="selected"|}><ste:escape>$section_name</ste:escape></option> + <option value="<ste:escape>$section_name</ste:escape>"?{~{$section_name|eq|$article_section}| selected="selected"|}><ste:escape>$section_name</ste:escape></option> </ste:foreach> </select> </p> |