diff options
author | Dexter Morgan <dmorgan@mageia.org> | 2010-12-21 21:47:49 +0000 |
---|---|---|
committer | Dexter Morgan <dmorgan@mageia.org> | 2010-12-21 21:47:49 +0000 |
commit | c7b767fcbc81de0e12e2d259e26b6e46228f2fc3 (patch) | |
tree | 19dfe74b5bd17885c493a5b607134bc32c2c2f19 | |
parent | f1037b9370917e71c380ab4021136d36a2c7c481 (diff) | |
download | identity-c7b767fcbc81de0e12e2d259e26b6e46228f2fc3.tar identity-c7b767fcbc81de0e12e2d259e26b6e46228f2fc3.tar.gz identity-c7b767fcbc81de0e12e2d259e26b6e46228f2fc3.tar.bz2 identity-c7b767fcbc81de0e12e2d259e26b6e46228f2fc3.tar.xz identity-c7b767fcbc81de0e12e2d259e26b6e46228f2fc3.zip |
Patch from : Maarten Vanraes attributes need to be doublequoted
-rw-r--r-- | root/user/index.tt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/root/user/index.tt b/root/user/index.tt index bbc7f64..4f84c07 100644 --- a/root/user/index.tt +++ b/root/user/index.tt @@ -7,7 +7,7 @@ <td>[% attr.name %]</td> <td> [% FOREACH val IN attr.values %] - [% IF attr.editable %]<input type=hidden name="[% attr.name %]_old" value="[% val %]" /> + [% IF attr.editable %]<input type="hidden" name="[% attr.name %]_old" value="[% val %]" /> <input name="[% attr.name %]_new" value="[% val %]" /> [% ELSE %] [% val %] |