Completed
Push — master ( 423b35...e79207 )
by Md. Mozahidur
02:17
created
includes/acf/fields/radio.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 		
45 45
 		
46 46
 		// do not delete!
47
-    	parent::__construct();
47
+		parent::__construct();
48 48
 	}
49 49
 		
50 50
 	
Please login to merge, or discard this patch.
includes/acf/fields/oembed.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 		
45 45
 		
46 46
 		// do not delete!
47
-    	parent::__construct();
47
+		parent::__construct();
48 48
 	}
49 49
 		
50 50
 	
Please login to merge, or discard this patch.
includes/acf/fields/tab.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 		
45 45
 		
46 46
 		// do not delete!
47
-    	parent::__construct();
47
+		parent::__construct();
48 48
 	}
49 49
 		
50 50
 	
Please login to merge, or discard this patch.
includes/acf/pro/fields/repeater.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 		
45 45
 		
46 46
 		// do not delete!
47
-    	parent::__construct();
47
+		parent::__construct();
48 48
 	}
49 49
 		
50 50
 	
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
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 		
45 45
 		
46 46
 		// do not delete!
47
-    	parent::__construct();
47
+		parent::__construct();
48 48
 	}
49 49
 		
50 50
 	
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
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 		
45 45
 		
46 46
 		// do not delete!
47
-    	parent::__construct();
47
+		parent::__construct();
48 48
 	}
49 49
 		
50 50
 	
Please login to merge, or discard this patch.
includes/theme-settings.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -64,31 +64,31 @@
 block discarded – undo
64 64
  */
65 65
 function tinymce_settings( $settings ) {
66 66
 
67
-    // html elements being stripped
67
+	// html elements being stripped
68 68
 	$settings['extended_valid_elements'] = 'div[*],article[*]';
69 69
 
70
-    // only html elements to keep
71
-    //$settings['valid_elements'] = 'a,strong/b,div,h1,h2,h3,section';
70
+	// only html elements to keep
71
+	//$settings['valid_elements'] = 'a,strong/b,div,h1,h2,h3,section';
72 72
 
73 73
 	// paste elements to keep
74 74
 	//$opts = '*[*]';
75 75
 	//$settings['paste_word_valid_elements'] = $opts;
76 76
 
77
-    // don't remove line breaks
77
+	// don't remove line breaks
78 78
 	//$settings['remove_linebreaks'] = false;
79 79
 
80 80
 	$settings['allow_html_in_named_anchor'] = true;
81 81
 
82
-    // convert newline characters to BR
82
+	// convert newline characters to BR
83 83
 	//$settings['convert_newlines_to_brs'] = true;
84 84
 
85
-    // don't remove redundant BR
85
+	// don't remove redundant BR
86 86
 	//$settings['remove_redundant_brs'] = false;
87 87
 
88 88
 	// only html elements to keep
89 89
 	//$settings['wpautop'] = false;
90 90
 
91
-    // pass back to wordpress
91
+	// pass back to wordpress
92 92
 
93 93
 	return $settings;
94 94
 }
Please login to merge, or discard this patch.