Completed
Push — master ( bf2509...4a16ad )
by Md. Mozahidur
03:47
created
includes/acf/fields/textarea.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 		
51 51
 		
52 52
 		// do not delete!
53
-    	parent::__construct();
53
+		parent::__construct();
54 54
 	}
55 55
 		
56 56
 	
Please login to merge, or discard this patch.
includes/acf/fields/true_false.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 		
51 51
 		
52 52
 		// do not delete!
53
-    	parent::__construct();
53
+		parent::__construct();
54 54
 	}
55 55
 		
56 56
 	
Please login to merge, or discard this patch.
includes/acf/fields/url.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 		
51 51
 		
52 52
 		// do not delete!
53
-    	parent::__construct();
53
+		parent::__construct();
54 54
 	}
55 55
 		
56 56
 	
Please login to merge, or discard this patch.
includes/acf/fields/user.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 		
51 51
 		
52 52
 		// do not delete!
53
-    	parent::__construct();
53
+		parent::__construct();
54 54
 	}
55 55
 		
56 56
 	
Please login to merge, or discard this patch.
includes/acf/forms/taxonomy.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -382,8 +382,8 @@
 block discarded – undo
382 382
 		}
383 383
 		
384 384
 	    
385
-	    // save data
386
-	    if( acf_validate_save_post(true) ) {
385
+		// save data
386
+		if( acf_validate_save_post(true) ) {
387 387
 	    	
388 388
 			acf_save_post( "user_{$user_id}" );
389 389
 		
Please login to merge, or discard this patch.
includes/acf/pro/fields/flexible-content.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 		
51 51
 		
52 52
 		// do not delete!
53
-    	parent::__construct();
53
+		parent::__construct();
54 54
 	}
55 55
 		
56 56
 	
Please login to merge, or discard this patch.
includes/acf/pro/fields/gallery.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 		
51 51
 		
52 52
 		// do not delete!
53
-    	parent::__construct();
53
+		parent::__construct();
54 54
 	}
55 55
 		
56 56
 	
Please login to merge, or discard this patch.
functions.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Lighthouse functions and definitions.
4
- *
5
- * @link https://developer.wordpress.org/themes/basics/theme-functions/
6
- *
7
- * @package Lighthouse
8
- */
3
+				 * Lighthouse functions and definitions.
4
+				 *
5
+				 * @link https://developer.wordpress.org/themes/basics/theme-functions/
6
+				 *
7
+				 * @package Lighthouse
8
+				 */
9 9
 
10 10
 if ( ! function_exists( 'lighthouse_setup' ) ) :
11 11
 /**
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
  * as indicating support for post thumbnails.
17 17
  */
18 18
 function lighthouse_setup() {
19
-    // This theme styles the visual editor to resemble the theme style.
19
+	// This theme styles the visual editor to resemble the theme style.
20 20
 	$font_url_Questrial = 'https://fonts.googleapis.com/css?family=Questrial';
21 21
 
22 22
 	$font_url_Raleway = 'https://fonts.googleapis.com/css?family=Raleway:400,300,500,700,600,100';
Please login to merge, or discard this patch.
single.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The template for displaying all single posts.
4
- *
5
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
6
- *
7
- * @package Lighthouse
8
- */
3
+		 * The template for displaying all single posts.
4
+		 *
5
+		 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
6
+		 *
7
+		 * @package Lighthouse
8
+		 */
9 9
 
10 10
 get_header(); ?>
11 11
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 							<?php
59 59
 							 $postslist = get_posts('numberposts=99&order=DESC&orderby=date');
60 60
 							 foreach ($postslist as $post) :
61
-							    setup_postdata($post);
61
+								setup_postdata($post);
62 62
 							 ?>
63 63
 							 <div class="col-xs-12">
64 64
 							 <div class="entry">
Please login to merge, or discard this patch.