jdarwood007

jdarwood007 commited on 2023-04-13 18:14:41
Showing 1 changed files, with 2 additions and 1 deletions.

... ...
@@ -225,7 +225,8 @@ class SFS
225 225
 			'search' => $this->user_info['is_guest'] || empty($this->user_info['posts']) || $this->user_info['posts'] < $this->modSettings['sfs_verfOptMemPostThreshold'],
226 226
 		];
227 227
 
228
-		foreach (array_filter($verificationMap, function($extendedChecks, $key) use ($thisVerification, $options) {
228
+		foreach (array_filter($verificationMap, function($extendedChecks, $key) use ($thisVerification, $options)
229
+		{
229 230
 			return $thisVerification['id'] == $key && in_array($key, $options);
230 231
 		}, ARRAY_FILTER_USE_BOTH) as $key => $extendedChecks)
231 232
 			return call_user_func(array($this, 'checkVerificationTest' . ucfirst($key)));
232 233