Completed
Push — master ( 970fb3...3f53fb )
by Patrick
01:37
created
plugin.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
     function get_secure_menu_entries($page, $user)
5 5
     {
6 6
         $ret = array(
7
-          'Volunteer' => $page->secure_root.'fvs/index.php'
7
+            'Volunteer' => $page->secure_root.'fvs/index.php'
8 8
         );
9 9
         if($user !== null && $user->isInGroupNamed('VolunteerAdmins'))
10 10
         {
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
     function get_plugin_entry_point()
17 17
     {
18 18
         return array(
19
-          'name'=>'Volunteer',
20
-          'link' => 'fvs/index.php'
19
+            'name'=>'Volunteer',
20
+            'link' => 'fvs/index.php'
21 21
         );
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
         );
9 9
         if($user !== null && $user->isInGroupNamed('VolunteerAdmins'))
10 10
         {
11
-            $ret['Volunteer System Admin']=$page->secure_root.'fvs/_admin/index.php';
11
+            $ret['Volunteer System Admin'] = $page->secure_root.'fvs/_admin/index.php';
12 12
         }
13 13
         return $ret;
14 14
     }
Please login to merge, or discard this patch.