Passed
Pull Request — master (#196)
by Virginia
02:48
created
includes/sanitize.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 	 * @param  mixed    $value      The value to sanitize.
22 22
 	 * @param  mixed    $setting    The setting for which the sanitizing is occurring.
23 23
 	 * @return mixed                The sanitized value.
24
-	*/
24
+	 */
25 25
 	function lsx_sanitize_choices( $value, $setting ) {
26 26
 		if ( is_object( $setting ) ) {
27 27
 			$setting = $setting->id;
Please login to merge, or discard this patch.
includes/plugins/bbpress.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,6 +34,6 @@
 block discarded – undo
34 34
 add_filter( 'get_the_archive_title', 'modify_archive_title', 10, 1 );
35 35
  
36 36
 function modify_archive_title( $title ) {
37
-    $title = "Forums";
38
-    return $title;
37
+	$title = "Forums";
38
+	return $title;
39 39
 }
Please login to merge, or discard this patch.