Mercurial > p > roundup > code
changeset 4944:fe2d72103cc8
Fix two line-break accidents in devel and responsive milestone.item.html
| author | Thomas Arendsen Hein <thomas@intevation.de> |
|---|---|
| date | Tue, 25 Nov 2014 16:04:17 +0100 |
| parents | b76710818d31 |
| children | 55aef7ab35a8 |
| files | CHANGES.txt share/roundup/templates/devel/html/milestone.item.html share/roundup/templates/responsive/html/milestone.item.html |
| diffstat | 3 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Mon Oct 20 14:10:32 2014 -0400 +++ b/CHANGES.txt Tue Nov 25 16:04:17 2014 +0100 @@ -132,6 +132,8 @@ - demo.py usage message improved: explains "nuke" now. (Bernhard Reiter) - Fix issue2550735 Missing doc for xmlrpc schema. Thanks to Cédric Krier for the patch. (anatoly techtonik) +- Fix two line-break accidents in devel and responsive milestone.item.html + (Thomas Arendsen Hein) 2013-07-06: 1.5.0
--- a/share/roundup/templates/devel/html/milestone.item.html Mon Oct 20 14:10:32 2014 -0400 +++ b/share/roundup/templates/devel/html/milestone.item.html Tue Nov 25 16:04:17 2014 +0100 @@ -45,8 +45,7 @@ <!-- status --> <tr tal:condition="context/id"> <th> - <a href="javascript:help_window('status?:template=help&properties=name,d -escription', 500, 400)">status</a> + <a href="javascript:help_window('status?:template=help&properties=name,description', 500, 400)">status</a> </th> <td colspan="5" tal:condition="python: request.user.hasPermission('Edit')"
--- a/share/roundup/templates/responsive/html/milestone.item.html Mon Oct 20 14:10:32 2014 -0400 +++ b/share/roundup/templates/responsive/html/milestone.item.html Tue Nov 25 16:04:17 2014 +0100 @@ -41,8 +41,7 @@ <!-- status --> <tr tal:condition="context/id"> <th> - <a href="javascript:help_window('status?:template=help&properties=name,d -escription', 500, 400)">status</a> + <a href="javascript:help_window('status?:template=help&properties=name,description', 500, 400)">status</a> </th> <td colspan="5" tal:condition="python: request.user.hasPermission('Edit')"
