Commit 5e9b075ea6423622817b5469effbfbcdf969a0b4

Authored by Neil Blakey-Milner
1 parent 60b476d1

Fix a typo - it is fStartStateId, not fStartingStateId


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4264 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/administration/workflow/workflows.php
... ... @@ -66,7 +66,7 @@ class KTWorkflowDispatcher extends KTStandardDispatcher {
66 66 $vocab[$state->getId()] = $state->getName();
67 67 }
68 68 $aOptions['vocab'] = $vocab;
69   - $edit_fields[] = new KTLookupWidget('Starting State','When a document has this workflow applied to it, to which state should it initially be set ', 'fStartingStateId', $oWorkflow->getStartStateId(), $this->oPage, false, null, null, $aOptions);
  69 + $edit_fields[] = new KTLookupWidget('Starting State','When a document has this workflow applied to it, to which state should it initially be set ', 'fStartStateId', $oWorkflow->getStartStateId(), $this->oPage, false, null, null, $aOptions);
70 70  
71 71 $add_state_fields = array();
72 72 $add_state_fields[] = new KTStringWidget('Name','A human-readable name for the state.', 'fName', null, $this->oPage, true);
... ...