Completed
Push — master ( d1cb05...0eae9b )
by Matt
02:39
created
captcha/recaptcha2.php 2 patches
Braces   +5 added lines, -10 removed lines patch added patch discarded remove patch
@@ -159,8 +159,7 @@  discard block
 block discarded – undo
159 159
 
160 160
 			$this->log->add('admin', $this->user->data['user_id'], $this->user->ip, 'LOG_CONFIG_VISUAL');
161 161
 			trigger_error($this->user->lang['CONFIG_UPDATED'] . adm_back_link($module->u_action));
162
-		}
163
-		else if ($this->request->is_set_post('submit'))
162
+		} else if ($this->request->is_set_post('submit'))
164 163
 		{
165 164
 			trigger_error($this->user->lang['FORM_INVALID'] . adm_back_link($module->u_action));
166 165
 		}
@@ -193,8 +192,7 @@  discard block
 block discarded – undo
193 192
 		if ($this->is_solved())
194 193
 		{
195 194
 			return false;
196
-		}
197
-		else
195
+		} else
198 196
 		{
199 197
 			$contact_link = phpbb_get_board_contact_link($this->config, $this->phpbb_root_path, $this->phpEx);
200 198
 			$explain = $this->user->lang(($this->type != CONFIRM_POST) ? 'GOTHICK_RECAPTCHA2_CONFIRM_EXPLAIN' : 'GOTHICK_RECAPTCHA2_POST_CONFIRM_EXPLAIN', '<a href="' . $contact_link . '">', '</a>');
@@ -254,8 +252,7 @@  discard block
 block discarded – undo
254 252
 		if (!parent::validate())
255 253
 		{
256 254
 			return false;
257
-		}
258
-		else
255
+		} else
259 256
 		{
260 257
 			try
261 258
 			{
@@ -265,14 +262,12 @@  discard block
 block discarded – undo
265 262
 				{
266 263
 					$this->solved = true;
267 264
 					return false;
268
-				}
269
-				else
265
+				} else
270 266
 				{
271 267
 					// TODO: Can we pass something less general back from the response?
272 268
 					return $this->user->lang['GOTHICK_RECAPTCHA2_INCORRECT'];
273 269
 				}
274
-			}
275
-			catch (\Exception $e)
270
+			} catch (\Exception $e)
276 271
 			{
277 272
 				trigger_error($this->user->lang('GOTHICK_RECAPTCHA2_EXCEPTION', $e->getMessage()), E_USER_ERROR);
278 273
 			}
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -158,11 +158,11 @@  discard block
 block discarded – undo
158 158
 			}
159 159
 
160 160
 			$this->log->add('admin', $this->user->data['user_id'], $this->user->ip, 'LOG_CONFIG_VISUAL');
161
-			trigger_error($this->user->lang['CONFIG_UPDATED'] . adm_back_link($module->u_action));
161
+			trigger_error($this->user->lang['CONFIG_UPDATED'].adm_back_link($module->u_action));
162 162
 		}
163 163
 		else if ($this->request->is_set_post('submit'))
164 164
 		{
165
-			trigger_error($this->user->lang['FORM_INVALID'] . adm_back_link($module->u_action));
165
+			trigger_error($this->user->lang['FORM_INVALID'].adm_back_link($module->u_action));
166 166
 		}
167 167
 
168 168
 		foreach ($captcha_vars as $captcha_var => $template_var)
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
 		else
198 198
 		{
199 199
 			$contact_link = phpbb_get_board_contact_link($this->config, $this->phpbb_root_path, $this->phpEx);
200
-			$explain = $this->user->lang(($this->type != CONFIRM_POST) ? 'GOTHICK_RECAPTCHA2_CONFIRM_EXPLAIN' : 'GOTHICK_RECAPTCHA2_POST_CONFIRM_EXPLAIN', '<a href="' . $contact_link . '">', '</a>');
200
+			$explain = $this->user->lang(($this->type != CONFIRM_POST) ? 'GOTHICK_RECAPTCHA2_CONFIRM_EXPLAIN' : 'GOTHICK_RECAPTCHA2_POST_CONFIRM_EXPLAIN', '<a href="'.$contact_link.'">', '</a>');
201 201
 
202 202
 			// Language code for reCAPTCHA to use
203 203
 			$recaptcha2_lang = $this->user->lang('GOTHICK_RECAPTCHA2_LANG');
Please login to merge, or discard this patch.
google/recaptcha.php 2 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -115,8 +115,7 @@  discard block
 block discarded – undo
115 115
 				throw new Exception('Fatal error while contacting reCAPTCHA. ' . $errno . ': ' . curl_error($conn) . '.');
116 116
 			}
117 117
 			curl_close($conn);
118
-		}
119
-		else
118
+		} else
120 119
 		{
121 120
 			// fallback
122 121
 			$response = file_get_contents($path . $req);
@@ -155,8 +154,7 @@  discard block
 block discarded – undo
155 154
 		if (isset($answers['success']))
156 155
 		{
157 156
 			$recaptcha_response->success = true;
158
-		}
159
-		else
157
+		} else
160 158
 		{
161 159
 			$recaptcha_response->success = false;
162 160
 			if (isset($answers['error-codes']))
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 			$opts = array(
94 94
 					CURLOPT_HEADER => false,
95 95
 					CURLOPT_RETURNTRANSFER => true,
96
-					CURLOPT_USERAGENT => 'ReCaptcha ' . self::VERSION,
96
+					CURLOPT_USERAGENT => 'ReCaptcha '.self::VERSION,
97 97
 					CURLOPT_AUTOREFERER => true,
98 98
 					CURLOPT_CONNECTTIMEOUT => 60,
99 99
 					CURLOPT_TIMEOUT => 60,
@@ -105,21 +105,21 @@  discard block
 block discarded – undo
105 105
 			{
106 106
 				$opts = array_merge($opts, $this->curl_opts);
107 107
 			}
108
-			$conn = curl_init($path . $req);
108
+			$conn = curl_init($path.$req);
109 109
 			curl_setopt_array($conn, $opts);
110 110
 			$response = curl_exec($conn);
111 111
 			// handle a connection error
112 112
 			$errno = curl_errno($conn);
113 113
 			if ($errno !== 0)
114 114
 			{
115
-				throw new Exception('Fatal error while contacting reCAPTCHA. ' . $errno . ': ' . curl_error($conn) . '.');
115
+				throw new Exception('Fatal error while contacting reCAPTCHA. '.$errno.': '.curl_error($conn).'.');
116 116
 			}
117 117
 			curl_close($conn);
118 118
 		}
119 119
 		else
120 120
 		{
121 121
 			// fallback
122
-			$response = file_get_contents($path . $req);
122
+			$response = file_get_contents($path.$req);
123 123
 		}
124 124
 		return $response;
125 125
 	}
Please login to merge, or discard this patch.