Skip to content

Commit daa762e

Browse files
author
Richard Jones
committed
Fix incorrect setting of template in customizing.txt example action
1 parent d047177 commit daa762e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ Fixed:
2727
from other transactions) see new ConcurrentDBTest for a
2828
read-modify-update cycle that fails with the old caching behavior.
2929
(Ralf Schlatterbeck)
30+
- Fix incorrect setting of template in customizing.txt example action,
31+
patch via issue2550682 (thanks John Kristensen)
32+
3033

3134
2010-10-08 1.4.16 (r4541)
3235

doc/customizing.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4869,10 +4869,10 @@ Setting up a "wizard" (or "druid") for controlled adding of issues
48694869
'''
48704870
category = self.form['category'].value
48714871
if category == '-1':
4872-
self.error_message.append('You must select a category of report')
4872+
self.client.error_message.append('You must select a category of report')
48734873
return
48744874
# everything's ok, move on to the next page
4875-
self.template = 'add_page2'
4875+
self.client.template = 'add_page2'
48764876

48774877
def init(instance):
48784878
instance.registerAction('page1_submit', Page1SubmitAction)

0 commit comments

Comments
 (0)