Completed
Pull Request — master (#216)
by
unknown
01:51
created
wp-bootstrap-navwalker.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -65,13 +65,13 @@
 block discarded – undo
65 65
 			$args->top_level_follow = isset($args->top_level_follow) ? $args->top_level_follow : false;
66 66
 
67 67
 			/**
68
-			* Dividers, Headers or Disabled
69
-			* =============================
70
-			* Determine whether the item is a Divider, Header, Disabled or regular
71
-			* menu item. To prevent errors we use the strcasecmp() function to so a
72
-			* comparison that is not case sensitive. The strcasecmp() function returns
73
-			* a 0 if the strings are equal.
74
-		 	*/
68
+			 * Dividers, Headers or Disabled
69
+			 * =============================
70
+			 * Determine whether the item is a Divider, Header, Disabled or regular
71
+			 * menu item. To prevent errors we use the strcasecmp() function to so a
72
+			 * comparison that is not case sensitive. The strcasecmp() function returns
73
+			 * a 0 if the strings are equal.
74
+			 */
75 75
 			if ( 0 === strcasecmp( $item->attr_title, 'divider' ) && 1 === $depth ) {
76 76
 				$output .= $indent . '<li role="presentation" class="divider">';
77 77
 			} elseif ( 0 === strcasecmp( $item->title, 'divider' ) && 1 === $depth ) {
Please login to merge, or discard this patch.