Skip to content

Commit 6d5a704

Browse files
committed
issue2551076 - responsive template, search links should ignore status
In responsive template, default searches (on side menu) for bugs and tasks sets status=new default should be "don't care".
1 parent d8871e1 commit 6d5a704

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ Fixed:
5959
rather than the xhtml form of 'required="required"'. Specifiy
6060
attribute value same as attribute name or attribute value of None,
6161
to output attribute as boolean. (John Rouillard)
62+
- issue2551076 - in responsive template, default searches for bugs and
63+
tasks sets status=new default should be "don't care". (Report:
64+
Ludwig Reiter; Fix: John Rouillard)
6265

6366
2019-10-23 2.0.0 alpha 0
6467

doc/upgrading.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,12 @@ If you have an incorrect value (say you use ``T`` rather than
249249

250250
to fix this set the value to ``yes`` (True) or ``no`` (False).
251251

252+
Responsive template changes
253+
---------------------------
254+
255+
There have been some changes to the responsive template. You can
256+
diff/merge these changes into your responsive template.
257+
252258

253259
Migrating from 1.5.1 to 1.6.0
254260
=============================

share/roundup/templates/responsive/html/page.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
i18n:translate="">Show Unassigned</a>
9393
</li>
9494
<li>
95-
<a href="bug?@template=search&status=1" i18n:translate="">Search</a>
95+
<a href="bug?@template=search" i18n:translate="">Search</a>
9696
</li>
9797
<li>
9898
<form method="post" action="#" class='form-inline'>
@@ -140,7 +140,7 @@
140140
i18n:translate="">Show Unassigned</a>
141141
</li>
142142
<li>
143-
<a href="task?@template=search&status=1" i18n:translate="">Search</a>
143+
<a href="task?@template=search" i18n:translate="">Search</a>
144144
</li>
145145
<li>
146146
<form method="post" action="#" class='form-inline'>

0 commit comments

Comments
 (0)