Skip to content

Commit e4adc74

Browse files
author
Richard Jones
committed
popup listing uses filter args (thanks Marlon van den Berg)
1 parent c277d5b commit e4adc74

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4+
2004-10-?? 0.7.9
5+
Fixed:
6+
- popup listing uses filter args (thanks Marlon van den Berg)
7+
8+
49
2004-10-15 0.7.8
510
Fixed:
611
- Clean out sessions / otks tables when migrating

templates/classic/html/_generic.help.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
</head>
1717
<body class="body" onload="resetList();">
1818
<form name="frm_help" tal:attributes="action request/base"
19-
tal:define="start python:int(request.form['@startwith'].value);
20-
batch python:utils.Batch(context.list(), 500, start);
19+
tal:define="batch request/batch;
2120
props python:request.form['properties'].value.split(',')">
2221

2322
<div id="classhelp-controls">

templates/minimal/html/_generic.help.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
</head>
1717
<body class="body" marginwidth="0" marginheight="0" onload="resetList();">
1818
<form name="frm_help" action=""
19-
tal:define="start python:int(request.form['@startwith'].value);
20-
batch python:utils.Batch(context.list(), 500, start);
19+
tal:define="batch request/batch;
2120
props python:request.form['properties'].value.split(',')">
2221

2322
<div id="classhelp-controls" tal:condition="python:start==0">

0 commit comments

Comments
 (0)