Skip to content

Commit

Permalink
Small improvement
Browse files Browse the repository at this point in the history
git-svn-id: svn://cherokee-project.com/CTK/trunk@4780 5dc97367-97f1-0310-9951-d761b3857238
  • Loading branch information
alobbs committed Apr 8, 2010
1 parent c1ec30a commit 93adc3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CTK/Druid.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ def __init__ (self, _props={}):
self.buttons = []

class DruidButtonsPanel_Next (DruidButtonsPanel):
def __init__ (self, url, cancel=True, props={}):
def __init__ (self, url, cancel=True, do_submit=True, props={}):
DruidButtonsPanel.__init__ (self, props.copy())
if cancel:
self += DruidButton_Close(_('Cancel'))
self += DruidButton_Goto (_('Next'), url, False)
self += DruidButton_Goto (_('Next'), url, do_submit)

class DruidButtonsPanel_PrevNext (DruidButtonsPanel):
def __init__ (self, url_prev, url_next, cancel=True, do_submit=True, props={}):
Expand Down

0 comments on commit 93adc3e

Please sign in to comment.