Changeset 3209705
- Timestamp:
- 12/18/2024 08:49:31 AM (13 months ago)
- Location:
- mightyforms
- Files:
-
- 5 deleted
- 11 edited
- 4 copied
-
tags/1.3.10 (copied) (copied from mightyforms/trunk)
-
tags/1.3.10/gutenberg_block/mightyforms_block/blocks.build.js (copied) (copied from mightyforms/trunk/gutenberg_block/mightyforms_block/blocks.build.js)
-
tags/1.3.10/gutenberg_source_code/dist/blocks.build.js (deleted)
-
tags/1.3.10/gutenberg_source_code/src/block/mainComponent.js (deleted)
-
tags/1.3.10/js/script.js (modified) (2 diffs)
-
tags/1.3.10/mightyforms.php (modified) (1 diff)
-
tags/1.3.10/readme.txt (copied) (copied from mightyforms/trunk/readme.txt) (2 diffs)
-
tags/1.3.10/shortcode.php (modified) (1 diff)
-
tags/1.3.10/views/application.php (modified) (2 diffs)
-
tags/1.3.10/views/forms.php (modified) (1 diff)
-
tags/1.3.10/views/how-to.php (copied) (copied from mightyforms/trunk/views/how-to.php)
-
trunk/assets (deleted)
-
trunk/js/mightyforms-loader.js (deleted)
-
trunk/js/script.js (modified) (2 diffs)
-
trunk/mightyforms.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shortcode.php (modified) (1 diff)
-
trunk/views/application.php (modified) (2 diffs)
-
trunk/views/forms.php (modified) (1 diff)
-
trunk/views/settings.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
mightyforms/tags/1.3.10/js/script.js
r2538897 r3209705 12 12 ajaxurl, { 13 13 action: 'upsert_user_api_key', 14 userApiKey: null 14 userApiKey: null, 15 nonce: jQuery('[name=mf_reconnect]').val(), 15 16 }, function (response) { 16 17 if (JSON.parse(response).success) { … … 59 60 ajaxurl, { 60 61 action: 'upsert_user_api_key', 61 userApiKey: post.data 62 userApiKey: post.data, 63 nonce: jQuery('[name=mf_login]').val(), 62 64 }, function (response) { 63 65 console.log(response) -
mightyforms/tags/1.3.10/mightyforms.php
r2607143 r3209705 4 4 Plugin Name: MightyForms 5 5 Description: Powerful web forms - made easy. Quickly create beautiful forms for any website with this intuitive Drag & Drop online form builder. 6 Version: 1.3. 86 Version: 1.3.10 7 7 Author: Porthas Inc. 8 8 Author URI: https://porthas.com -
mightyforms/tags/1.3.10/readme.txt
r3076493 r3209705 5 5 Requires at least: 3.0.0 6 6 Tested up to: 6.5.2 7 Stable tag: 1.3. 97 Stable tag: 1.3.10 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 274 274 == Changelog == 275 275 276 = 1.3.10 = 277 * Security fixes 278 276 279 = 1.3.9 = 277 280 * Small fixes -
mightyforms/tags/1.3.10/shortcode.php
r2375014 r3209705 11 11 { 12 12 return '<!-- MightyForms Section --> 13 <div class="mighty-form" id="' . $atts['id']. '"></div>13 <div class="mighty-form" id="' . esc_attr($atts['id']) . '"></div> 14 14 <script async src="https://form.mightyforms.com/loader/v1/mightyforms.min.js"></script> 15 15 <!-- End MightyForms Section -->'; -
mightyforms/tags/1.3.10/views/application.php
r2606900 r3209705 31 31 </div> 32 32 <div class="application-box"> 33 <?php wp_nonce_field('user_api_key','mf_login'); ?> 33 34 <iframe id="mf" src="<?php echo $iframe_src; ?>" frameborder="0" style="width: 100%;"></iframe> 34 35 </div> … … 50 51 { 51 52 try { 53 if (!current_user_can('manage_options') || empty($_POST['nonce']) 54 || !wp_verify_nonce($_POST['nonce'], 'user_api_key') 55 ) { 56 throw new Exception('Access denied'); 57 } 58 52 59 $api_key = esc_sql($_POST['userApiKey']); 53 60 -
mightyforms/tags/1.3.10/views/forms.php
r2448016 r3209705 70 70 <h3>Your forms and shortcodes.</h3> 71 71 <button>Reconnect</button> 72 <?php wp_nonce_field('user_api_key','mf_reconnect'); ?> 72 73 </div> 73 74 <p>If you want to show your form in a page or post - just copy the form's shortcode and paste it into your -
mightyforms/trunk/js/script.js
r2538897 r3209705 12 12 ajaxurl, { 13 13 action: 'upsert_user_api_key', 14 userApiKey: null 14 userApiKey: null, 15 nonce: jQuery('[name=mf_reconnect]').val(), 15 16 }, function (response) { 16 17 if (JSON.parse(response).success) { … … 59 60 ajaxurl, { 60 61 action: 'upsert_user_api_key', 61 userApiKey: post.data 62 userApiKey: post.data, 63 nonce: jQuery('[name=mf_login]').val(), 62 64 }, function (response) { 63 65 console.log(response) -
mightyforms/trunk/mightyforms.php
r2607143 r3209705 4 4 Plugin Name: MightyForms 5 5 Description: Powerful web forms - made easy. Quickly create beautiful forms for any website with this intuitive Drag & Drop online form builder. 6 Version: 1.3. 86 Version: 1.3.10 7 7 Author: Porthas Inc. 8 8 Author URI: https://porthas.com -
mightyforms/trunk/readme.txt
r3076493 r3209705 5 5 Requires at least: 3.0.0 6 6 Tested up to: 6.5.2 7 Stable tag: 1.3. 97 Stable tag: 1.3.10 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 274 274 == Changelog == 275 275 276 = 1.3.10 = 277 * Security fixes 278 276 279 = 1.3.9 = 277 280 * Small fixes -
mightyforms/trunk/shortcode.php
r2375014 r3209705 11 11 { 12 12 return '<!-- MightyForms Section --> 13 <div class="mighty-form" id="' . $atts['id']. '"></div>13 <div class="mighty-form" id="' . esc_attr($atts['id']) . '"></div> 14 14 <script async src="https://form.mightyforms.com/loader/v1/mightyforms.min.js"></script> 15 15 <!-- End MightyForms Section -->'; -
mightyforms/trunk/views/application.php
r2606900 r3209705 31 31 </div> 32 32 <div class="application-box"> 33 <?php wp_nonce_field('user_api_key','mf_login'); ?> 33 34 <iframe id="mf" src="<?php echo $iframe_src; ?>" frameborder="0" style="width: 100%;"></iframe> 34 35 </div> … … 50 51 { 51 52 try { 53 if (!current_user_can('manage_options') || empty($_POST['nonce']) 54 || !wp_verify_nonce($_POST['nonce'], 'user_api_key') 55 ) { 56 throw new Exception('Access denied'); 57 } 58 52 59 $api_key = esc_sql($_POST['userApiKey']); 53 60 -
mightyforms/trunk/views/forms.php
r2448016 r3209705 70 70 <h3>Your forms and shortcodes.</h3> 71 71 <button>Reconnect</button> 72 <?php wp_nonce_field('user_api_key','mf_reconnect'); ?> 72 73 </div> 73 74 <p>If you want to show your form in a page or post - just copy the form's shortcode and paste it into your
Note: See TracChangeset
for help on using the changeset viewer.