Completed
Push — master ( c74a72...239795 )
by Olivier
04:51
created
lib/Hooks.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Patron;
13 13
 
14 14
 use Brickrouge\Pager;
15
-
16 15
 use ICanBoogie\Core;
17 16
 use ICanBoogie\Render\TemplateName;
18 17
 
Please login to merge, or discard this patch.
lib/textmark/textmark.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1124,7 +1124,7 @@
 block discarded – undo
1124 1124
 			'break',
1125 1125
 			'class',
1126 1126
 			'const',
1127
-            'endif',
1127
+			'endif',
1128 1128
 			'case',
1129 1129
 			'true',
1130 1130
 			'self',
Please login to merge, or discard this patch.
lib/markdown/markdown.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,10 +87,10 @@
 block discarded – undo
87 87
 	# - Add paragraph tag around the excerpt, but remove it for the excerpt rss.
88 88
 	if (MARKDOWN_WP_POSTS) {
89 89
 		remove_filter('the_content',     'wpautop');
90
-        remove_filter('the_content_rss', 'wpautop');
90
+		remove_filter('the_content_rss', 'wpautop');
91 91
 		remove_filter('the_excerpt',     'wpautop');
92 92
 		add_filter('the_content',     'mdwp_MarkdownPost', 6);
93
-        add_filter('the_content_rss', 'mdwp_MarkdownPost', 6);
93
+		add_filter('the_content_rss', 'mdwp_MarkdownPost', 6);
94 94
 		add_filter('get_the_excerpt', 'mdwp_MarkdownPost', 6);
95 95
 		add_filter('get_the_excerpt', 'trim', 7);
96 96
 		add_filter('the_excerpt',     'mdwp_add_p');
Please login to merge, or discard this patch.