Completed
Push — master ( ed55c9...3c3c4c )
by Grant
09:24
created
public_html/inc/common/landing-hero.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
                 $url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
23 23
                 if (strpos($url, 'admin') !== false) {
24 24
                     echo '<p id="adminTagline" class="centered">Changing government through it\'s people</p>';
25
-                } else {
25
+                }else {
26 26
 
27 27
                 }
28 28
             ?>
Please login to merge, or discard this patch.
public_html/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
         header("Refresh:0; url=\"" . REDIRECT_URI . "");
64 64
     }
65
-} else {
65
+}else {
66 66
     $_SESSION['openid_connect_state'] = $state;
67 67
     $_SESSION['openid_connect_nonce'] = $nonce;
68 68
 }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
                 echo("UserAPI.storeSessionUser(" . json_encode($userInfo) . ");");
109 109
                 echo("UserAPI.login();");
110 110
             }
111
-        } else {
111
+        }else {
112 112
             echo("UserAPI.login();");
113 113
         }
114 114
         //var isExistingUser = UserAPI.authenticate(UserAPI.getSessionUserAsJSON());
Please login to merge, or discard this patch.
public_html/tc/index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
         header('HTTP/1.0 401 Unauthorized');
9 9
         echo 'Text to send if user hits Cancel button';
10 10
         exit;
11
-    } else {
11
+    }else {
12 12
         if ($_SERVER['PHP_AUTH_USER'] == 'test' && $_SERVER['PHP_AUTH_PW'] == 'test') {
13 13
             header("Access-Control-Allow-Origin: *");
14 14
             header("Content-Type: application/json");
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
                         $result = array('user' => 'test', 'pass' => 'test');
26 26
                         $json = json_encode($result);
27 27
                         echo($json);
28
-                    } else {
28
+                    }else {
29 29
                         $result1 = array('user' => 'test', 'pass' => 'test');
30 30
                         $result2 = array('user' => 'test1', 'pass' => 'test1');
31 31
                         $result3 = array('user' => 'test2', 'pass' => 'test2');
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
                     echo("");
56 56
                     break;
57 57
             }
58
-        } else {
58
+        }else {
59 59
             header('WWW-Authenticate: Basic realm="My Realm"');
60 60
             header('HTTP/1.0 401 Unauthorized');
61 61
             echo 'Authorization declined';
Please login to merge, or discard this patch.
public_html/tc/controller/ManagerProfileController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             }
41 41
             
42 42
             return ["manager_profile_id"=>$profileId];
43
-        } else {
43
+        }else {
44 44
             $profileId = ManagerProfileDAO::createManagerProfile($managerProfile, $managerProfileDetails);
45 45
             return ["manager_profile_id"=>$profileId];
46 46
         }
Please login to merge, or discard this patch.
public_html/tc/controller/UserController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         //if user_id is not null, then log the user in automatically
62 62
         if ($existingUser) {
63 63
             return $existingUser;
64
-        } else {
64
+        }else {
65 65
             //if user_id is null, then the user is not registered and we should register them automatically
66 66
             //register new user
67 67
             $newUser = UserController::registerUser($user);
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
                 $userId = $registeredUser->getUser_id();
88 88
                 $jobSeekerProfile = new JobSeekerProfile();                
89 89
                 $result = JobSeekerController::addJobSeekerProfile($jobSeekerProfile, $userId);
90
-            } else if ($registeredUser->getUser_role() === 'administrator') {
90
+            }else if ($registeredUser->getUser_role() === 'administrator') {
91 91
                 
92 92
                 $userId = $registeredUser->getUser_id();
93 93
                 $managerProfile = new ManagerProfile();
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
             if ($oldUser->getEmail() != $updatedUser->getEmail()) {
130 130
                 $confEmailSent = UserController::confirmEmail($updatedUser);
131 131
                 $updatedUser->setIs_confirmed(false);
132
-            } else {
132
+            }else {
133 133
                 $updatedUser->setIs_confirmed($oldUser->getIs_confirmed());
134 134
             }
135 135
             $updateSuccessful = UserDAO::updateUser($updatedUser); //do updates
Please login to merge, or discard this patch.
public_html/tc/controller/JobApplicationController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
             $questionAnswers = self::getApplicationQuestionAnswers($jobPosterApplication->getJob_poster_application_id());
71 71
             $jobApplicationWithAnswers = new JobApplicationWithAnswers($jobPosterApplication, $questionAnswers);
72 72
             return $jobApplicationWithAnswers;
73
-        } else {
73
+        }else {
74 74
             return false;
75 75
         }
76 76
     }
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
             $workSamples = WorkSampleController::getAllWorkSamplesForJobApplication($jobPosterApplicationId, $locale);
166 166
             
167 167
             return new FullJobApplication($jobPosterApplication, $jobSeekerProfile, $questionAnswers, $skillDeclarations, $microReferences, $workSamples);
168
-        } else {
168
+        }else {
169 169
             return false;
170 170
         }
171 171
     }
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
         $isDraft = self::jobApplicationIsDraft($jobPosterApplicationId);
175 175
         if ($isDraft) {
176 176
             return JobApplicationDAO::setJobAppliationStatus($jobPosterApplicationId, "Submitted");
177
-        } else {
177
+        }else {
178 178
             return ["false"=>"Cannot submit an application which is not a draft"];
179 179
         }
180 180
     }
Please login to merge, or discard this patch.
public_html/tc/controller/ResourceController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         if ($resourceKey != null && !empty($resourceKey)) {
38 38
             if ($keyOption != null) {
39 39
                 return $commonLabelArray[$resourceKey][$keyOption];
40
-            } else {
40
+            }else {
41 41
                 return $commonLabelArray[$resourceKey];
42 42
             }
43 43
         }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         if ($resourceKey != null && !empty($resourceKey)) {
58 58
             if ($keyOption != null) {
59 59
                 return $labelArray[$resourceKey][$keyOption];
60
-            } else {
60
+            }else {
61 61
                 return $labelArray[$resourceKey];
62 62
             }
63 63
         }
Please login to merge, or discard this patch.
public_html/tc/controller/EmailConfirmationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         //var_dump($message);
45 45
         if (!@mail($to, $subject, $message, $headers)) {
46 46
             return false;
47
-        } else {
47
+        }else {
48 48
             return true;
49 49
         }
50 50
         
Please login to merge, or discard this patch.
public_html/tc/services/JobPosters.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
                 $json = json_encode($result, JSON_PRETTY_PRINT);
35 35
                 header("Content-length:" . strlen($json));
36 36
                 echo($json);
37
-            } else {
37
+            }else {
38 38
                 $result = array();
39 39
                 $json = json_encode($result, JSON_PRETTY_PRINT);
40 40
                 echo($json);
Please login to merge, or discard this patch.