isSingleton was not ever in the editSave form for the Workflow!

This commit is contained in:
Colin Kuskie 2007-04-02 04:56:50 +00:00
parent 6d79679194
commit 133f2010ab
2 changed files with 7 additions and 4 deletions

View file

@ -22,6 +22,8 @@
http://www.plainblack.com/bugs/tracker/sqlform---cannot-add-new-asset-revisited#barqLwFe3LPODb4Mksc6ZA
- fix: Fixed a bug where $session->form->param() would return params twice.
(Martin Kamerbeek / Oqapi)
- fix: Can't set workflow to singleton (perlDreamer Consulting, LLC)
http://www.plainblack.com/bugs/tracker/cant-set-workflow-to-singleton
7.3.13
- fix: Stale pages after user login

View file

@ -247,6 +247,7 @@ sub www_editWorkflowSave {
my $workflow = WebGUI::Workflow->new($session, $session->form->param("workflowId"));
$workflow->set({
enabled => $session->form->get("enabled", "yesNo"),
isSingleton => $session->form->get("isSingleton", "yesNo"),
isSerial => $session->form->get("isSerial", "yesNo"),
title => $session->form->get("title"),
description => $session->form->get("description", "textarea"),