Changeset 1628
- Timestamp:
- 02/22/10 15:19:38 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/ullFlowPlugin/lib/model/doctrine/PluginUllFlowDoc.class.php
r1203 r1628 288 288 289 289 $rs = $q->execute(); 290 290 291 if (isset($rs[1])) 291 292 { … … 406 407 * sets the action to create 407 408 * removes the comment to avoid duplication 409 * Sets the creator as assigned to 410 * Sets the step to the startstep 408 411 * 409 412 */ … … 412 415 $i = $this->createMemory(); 413 416 $this->UllFlowMemories[$i]->UllFlowAction = Doctrine::getTable('UllFlowAction')->findOneBySlug('create'); 414 $this->UllFlowMemories[$i]->comment = ''; 417 $this->UllFlowMemories[$i]->comment = ''; 418 $this->UllFlowMemories[$i]->assigned_to_ull_entity_id = $this->getUserId(); 419 $this->UllFlowMemories[$i]->ull_flow_step_id = $this->UllFlowApp->findStartStep()->id; 415 420 } 416 421
