Passed
Push — master ( 4e17db...db96e2 )
by Virginia
04:08
created
includes/plugins/bbpress.php 2 patches
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.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@  discard block
 block discarded – undo
6 6
  * @subpackage bbpress
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13 13
 global $bbpress;
14 14
 
15
-if ( ! function_exists( 'lsx_bbpress_scripts_add_styles' ) ) :
15
+if ( ! function_exists('lsx_bbpress_scripts_add_styles')) :
16 16
 
17 17
 	/**
18 18
 	 * bbPress enqueue styles.
@@ -21,19 +21,19 @@  discard block
 block discarded – undo
21 21
 	 * @subpackage bbpress
22 22
 	 */
23 23
 	function lsx_bbpress_scripts_add_styles() {
24
-		wp_enqueue_style( 'bbpress-lsx', get_template_directory_uri() . '/assets/css/bb-press.css', array( 'lsx_main' ), LSX_VERSION );
25
-		wp_style_add_data( 'bbpress-lsx', 'rtl', 'replace' );
24
+		wp_enqueue_style('bbpress-lsx', get_template_directory_uri() . '/assets/css/bb-press.css', array('lsx_main'), LSX_VERSION);
25
+		wp_style_add_data('bbpress-lsx', 'rtl', 'replace');
26 26
 	}
27 27
 
28
-	add_action( 'wp_enqueue_scripts', 'lsx_bbpress_scripts_add_styles' );
28
+	add_action('wp_enqueue_scripts', 'lsx_bbpress_scripts_add_styles');
29 29
 
30 30
 endif;
31 31
 
32 32
 /**** Remove "Archives:"  from the forums archive title. ******/
33 33
 
34
-add_filter( 'get_the_archive_title', 'modify_archive_title', 10, 1 );
34
+add_filter('get_the_archive_title', 'modify_archive_title', 10, 1);
35 35
  
36
-function modify_archive_title( $title ) {
36
+function modify_archive_title($title) {
37 37
     $title = "Forums";
38 38
     return $title;
39 39
 }
Please login to merge, or discard this patch.