Skip to content

Commit

Permalink
Coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasreischmann committed Jan 29, 2020
1 parent 471b97d commit 2200fac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion adminlib.php
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,8 @@ private function view_plugins_table() {
$steps = step_manager::get_step_types();
echo '<span class="ml-1"></span>';
echo $OUTPUT->single_select(new \moodle_url($PAGE->url,
array('action' => action::STEP_INSTANCE_FORM, 'sesskey' => sesskey(), 'workflowid' => $this->workflowid, 'class' => 'ml-1')),
array('action' => action::STEP_INSTANCE_FORM, 'sesskey' => sesskey(),
'workflowid' => $this->workflowid, 'class' => 'ml-1')),
'stepname', $steps, '', array('' => get_string('add_new_step_instance', 'tool_lifecycle')));
}

Expand Down
2 changes: 1 addition & 1 deletion lang/en/tool_lifecycle.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
$string['process_proceeded_event'] = 'A process has been proceeded';
$string['process_rollback_event'] = 'A process has been rolled back';

// Privacy API
// Privacy API.
$string['privacy:metadata:tool_lifecycle_action_log'] = 'A log of actions done by course managers.';
$string['privacy:metadata:tool_lifecycle_action_log:processid'] = 'ID of the Process the action was done in.';
$string['privacy:metadata:tool_lifecycle_action_log:workflowid'] = 'ID of the Workflow the action was done in.';
Expand Down

0 comments on commit 2200fac

Please sign in to comment.