Completed
Push — master ( cf1423...1abfb3 )
by Daniel Neis
02:12
created
featuredcourses.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
 $PAGE->set_title(get_string('editpagetitle', 'block_featuredcourses'));
52 52
 $PAGE->set_heading($site->fullname . ' - ' . 
53
-                   get_string('pluginname', 'block_featuredcourses'));
53
+                    get_string('pluginname', 'block_featuredcourses'));
54 54
 
55 55
 echo $OUTPUT->header();
56 56
 echo $OUTPUT->heading(get_string('editpagedesc', 'block_featuredcourses'));
Please login to merge, or discard this patch.
block_featuredcourses.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
     }
113 113
 
114 114
     public function instance_allow_multiple() {
115
-          return false;
115
+            return false;
116 116
     }
117 117
 
118 118
     public function has_config() {
Please login to merge, or discard this patch.
delete_featuredcourse.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,10 +59,10 @@
 block discarded – undo
59 59
 
60 60
 echo $OUTPUT->header(),
61 61
 
62
-     $OUTPUT->box_start('generalbox errorboxcontent boxaligncenter boxwidthnormal'),
63
-     html_writer::tag('p', get_string('confirmdelete', 'block_featuredcourses'), array('class' => 'bold'));
62
+        $OUTPUT->box_start('generalbox errorboxcontent boxaligncenter boxwidthnormal'),
63
+        html_writer::tag('p', get_string('confirmdelete', 'block_featuredcourses'), array('class' => 'bold'));
64 64
 
65 65
 $mform->display();
66 66
 
67 67
 echo $OUTPUT->box_end(),
68
-     $OUTPUT->footer();
68
+        $OUTPUT->footer();
Please login to merge, or discard this patch.
edit_form.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
         $mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
33 33
         $mform->addElement('static', 'link',
34
-                           get_string('editlink', 'block_featuredcourses',
35
-                                      $CFG->wwwroot.'/blocks/featuredcourses/featuredcourses.php'));
34
+                            get_string('editlink', 'block_featuredcourses',
35
+                                        $CFG->wwwroot.'/blocks/featuredcourses/featuredcourses.php'));
36 36
     }
37 37
 }
Please login to merge, or discard this patch.