Completed
Pull Request — master (#549)
by Stephanie
45s
created
classes/views/frm-form-actions/default_actions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 class FrmDefPostAction extends FrmFormAction {
8 8
 	public function __construct() {
9 9
 		$action_ops = FrmFormAction::default_action_opts( 'frm_wordpress_icon frm-inverse frm_show_upgrade' );
10
-		$action_ops['color']   = 'rgb(0,160,210)';
10
+		$action_ops['color'] = 'rgb(0,160,210)';
11 11
 
12 12
 		parent::__construct( 'wppost', __( 'Create Post', 'formidable' ), $action_ops );
13 13
 	}
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 class FrmDefMlcmpAction extends FrmFormAction {
47 47
 	public function __construct() {
48 48
 		$action_ops = FrmFormAction::default_action_opts( 'frm_mailchimp_icon frm_show_upgrade frm-inverse' );
49
-		$action_ops['color']   = 'var(--dark-grey)';
49
+		$action_ops['color'] = 'var(--dark-grey)';
50 50
 
51 51
 		parent::__construct( 'mailchimp', 'MailChimp', $action_ops );
52 52
 	}
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 			$action_ops['message'] .= __( 'The HubSpot integration is not available on your plan. Did you know you can upgrade to unlock more awesome features?', 'formidable' ) . '<br/><br/>';
121 121
 		}
122 122
 		$link                   = FrmAppHelper::admin_upgrade_link( 'add-action', 'knowledgebase/hubspot-forms/' );
123
-		$action_ops['message'] .= '<a href="' . esc_url( $link ) .'" target="_blank" rel="noopener" class="button button-secondary frm-button-secondary">Get Free HubSpot Account</a>';
123
+		$action_ops['message'] .= '<a href="' . esc_url( $link ) . '" target="_blank" rel="noopener" class="button button-secondary frm-button-secondary">Get Free HubSpot Account</a>';
124 124
 		parent::__construct( 'hubspot', 'Hubspot', $action_ops );
125 125
 	}
126 126
 }
Please login to merge, or discard this patch.