From 2200face0e0032aa91b20316309998604d76d854 Mon Sep 17 00:00:00 2001 From: Tobias Reischmann Date: Wed, 29 Jan 2020 13:08:38 +0100 Subject: [PATCH] Coding style --- adminlib.php | 3 ++- lang/en/tool_lifecycle.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/adminlib.php b/adminlib.php index e5992fd5..dbbe5905 100644 --- a/adminlib.php +++ b/adminlib.php @@ -406,7 +406,8 @@ private function view_plugins_table() { $steps = step_manager::get_step_types(); echo ''; 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'))); } diff --git a/lang/en/tool_lifecycle.php b/lang/en/tool_lifecycle.php index 53ea9c9d..dcf69f46 100644 --- a/lang/en/tool_lifecycle.php +++ b/lang/en/tool_lifecycle.php @@ -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.';