Completed
Pull Request — master (#473)
by
unknown
01:14
created
class-wp-bootstrap-navwalker.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -253,10 +253,10 @@
 block discarded – undo
253 253
 			 * Not having escape_titles set, or setting escape_titles to true will result in escaped titles.
254 254
 			 */
255 255
 			if (property_exists($args, 'escape_titles') && false === $args->escape_titles) { // WPCS: loose comparison ok.
256
-			    $title = apply_filters('the_title', $item->title, $item->ID);
256
+				$title = apply_filters('the_title', $item->title, $item->ID);
257 257
 			} else {
258
-			    /** This filter is documented in wp-includes/post-template.php */
259
-			    $title = apply_filters('the_title', esc_html($item->title), $item->ID);
258
+				/** This filter is documented in wp-includes/post-template.php */
259
+				$title = apply_filters('the_title', esc_html($item->title), $item->ID);
260 260
 			}
261 261
 
262 262
 			/**
Please login to merge, or discard this patch.