PluginProbe
WPIDE – File Manager & Code Editor / 3.5.9
WPIDE – File Manager & Code Editor v3.5.9
3.5.9 3.5.8 3.5.7 2.0.14 2.0.15 2.0.16 2.0.2 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1 2.2 2.3 2.3.1 2.3.2 2.4.0 2.5 2.6 3.0 3.1 3.2 3.3 All 55 releases
← All changes | freemius/templates/forms/resend-key.php +5 -2 3.0 → 3.5.9 View file →
@@ -53,9 +53,12 @@
53 53 </div>
54 54 HTML;
55 55 }
56 56
57 - $message_above_input_field = fs_esc_html_inline( "Enter the email address you've used for the upgrade below and we will resend you the license key.", 'ask-for-upgrade-email-address', $slug );
57 + $message_above_input_field = $fs->is_only_premium() ?
58 + fs_esc_html_inline( "Enter the email address you've used during the purchase and we will resend you the license key.", 'ask-for-upgrade-email-address-premium-only', $slug ) :
59 + fs_esc_html_inline( "Enter the email address you've used for the upgrade below and we will resend you the license key.", 'ask-for-upgrade-email-address', $slug );
60 +
58 61 $modal_content_html = <<< HTML
59 62 <div class="notice notice-error inline license-resend-message"><p></p></div>
60 63 <p>{$message_above_input_field}</p>
61 64 <div class="input-container">
@@ -141,9 +144,9 @@
141 144 return;
142 145 }
143 146
144 147 $.ajax({
145 - url : ajaxurl,
148 + url : <?php echo Freemius::ajax_url() ?>,
146 149 method : 'POST',
147 150 data : {
148 151 action : '<?php echo $fs->get_ajax_action( 'resend_license_key' ) ?>',
149 152 security : '<?php echo $fs->get_ajax_security( 'resend_license_key' ) ?>',