Completed
Pull Request — master (#1683)
by
unknown
34:05 queued 14:11
created
includes/admin/class-admin-settings.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -733,9 +733,9 @@
 block discarded – undo
733 733
                         <td class="give-docs-link" colspan="2">
734 734
 							<?php
735 735
 							echo '<p class="give-docs-link"><a href="' . esc_url( $value['url'] )
736
-							     . '" target="_blank">'
737
-							     . sprintf( esc_html__( 'Need Help? See docs on "%s"', 'give' ), $value['title'] )
738
-							     . '<span class="dashicons dashicons-editor-help"></span></a></p>';
736
+								 . '" target="_blank">'
737
+								 . sprintf( esc_html__( 'Need Help? See docs on "%s"', 'give' ), $value['title'] )
738
+								 . '<span class="dashicons dashicons-editor-help"></span></a></p>';
739 739
 							?>
740 740
                         </td>
741 741
                         </tr><?php
Please login to merge, or discard this patch.
includes/admin/give-metabox-functions.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -555,7 +555,7 @@  discard block
 block discarded – undo
555 555
 				type="radio"
556 556
 				style="' . esc_attr( $field['style'] ) . '"
557 557
 				' . checked( esc_attr( $field['value'] ), esc_attr( $key ), false ) . ' '
558
-		     . give_get_custom_attributes( $field ) . '
558
+			 . give_get_custom_attributes( $field ) . '
559 559
 				/> ' . esc_html( $value ) . '</label>
560 560
 		</li>';
561 561
 	}
@@ -704,9 +704,9 @@  discard block
 block discarded – undo
704 704
 	$field['title'] = isset( $field['title'] ) ? $field['title'] : 'Documentation';
705 705
 
706 706
 	echo '<p class="give-docs-link"><a href="' . esc_url( $field['url'] )
707
-	     . '" target="_blank">'
708
-	     . sprintf( esc_html__( 'Need Help? See docs on "%s"', 'give' ), $field['title'] )
709
-	     . '<span class="dashicons dashicons-editor-help"></span></a></p>';
707
+		 . '" target="_blank">'
708
+		 . sprintf( esc_html__( 'Need Help? See docs on "%s"', 'give' ), $field['title'] )
709
+		 . '<span class="dashicons dashicons-editor-help"></span></a></p>';
710 710
 }
711 711
 
712 712
 /**
Please login to merge, or discard this patch.