Completed
Push — master ( 2f95aa...1df65a )
by Evan
05:36
created
public/class-yikes-inc-easy-mailchimp-extender-public.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -73,10 +73,10 @@  discard block
 block discarded – undo
73 73
 	}
74 74
 	
75 75
 	/**
76
-	*	Create our own custom the_content(); filter to prevent plugins and such from hooking in where not wanted
77
-	*
78
-	*	@since 6.0.3
79
-	*/
76
+	 *	Create our own custom the_content(); filter to prevent plugins and such from hooking in where not wanted
77
+	 *
78
+	 *	@since 6.0.3
79
+	 */
80 80
 	public function yikes_custom_frontend_content_filter() {
81 81
 		add_filter( 'yikes-mailchimp-frontend-content', 'wptexturize' );
82 82
 		add_filter( 'yikes-mailchimp-frontend-content', 'convert_smilies' );
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	 *	load our checkbox classes
94 94
 	 *
95 95
 	 *	@since 6.0.0
96
-	**/
96
+	 **/
97 97
 	public function load_checkbox_integration_classes() {
98 98
 		// store our options
99 99
 		$integrations = get_option( 'optin-checkbox-init' , '' );
Please login to merge, or discard this patch.
public/partials/shortcodes/process/process_form_submission.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 // Process our form submissions (non ajax forms)
19 19
 if ( ! isset( $_POST['yikes_easy_mc_new_subscriber'] ) || ! wp_verify_nonce( $_POST['yikes_easy_mc_new_subscriber'], 'yikes_easy_mc_form_submit' ) ) {
20 20
 
21
-    $process_submission_response = '<p><small class="form_submission_error">' . __( "Error : Sorry, the nonce security check didn't pass. Please reload the page and try again. You may want to try clearing your browser cache as a last attempt." , 'yikes-inc-easy-mailchimp-extender' ) . '</small></p>';
21
+	 $process_submission_response = '<p><small class="form_submission_error">' . __( "Error : Sorry, the nonce security check didn't pass. Please reload the page and try again. You may want to try clearing your browser cache as a last attempt." , 'yikes-inc-easy-mailchimp-extender' ) . '</small></p>';
22 22
 	return;
23 23
 
24 24
 } else {
@@ -124,11 +124,11 @@  discard block
 block discarded – undo
124 124
 	$merge_variables = apply_filters( 'yikes-mailchimp-before-submission-' . $form_id, $merge_variables );
125 125
 
126 126
 	/**
127
-	* Action hooks fired before API request
128
-	* @since 6.0.5.5
129
-	* @param $merge_variables 	array 	Array of merge variable to use
130
-	* @param $form_id						integer	The form ID to target (eg: 1, 2 etc.)
131
-	*/
127
+	 * Action hooks fired before API request
128
+	 * @since 6.0.5.5
129
+	 * @param $merge_variables 	array 	Array of merge variable to use
130
+	 * @param $form_id						integer	The form ID to target (eg: 1, 2 etc.)
131
+	 */
132 132
 	do_action( 'yikes-mailchimp-before-submission', $merge_variables );
133 133
 	do_action( 'yikes-mailchimp-before-submission-' . $form_id, $merge_variables );
134 134
 
Please login to merge, or discard this patch.