Changeset 2418696
- Timestamp:
- 11/14/2020 06:19:17 PM (5 years ago)
- Location:
- wp-simplemind-map/trunk
- Files:
-
- 4 edited
-
app.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/SmdmapEnqueue.php (modified) (1 diff)
-
src/SmdmapHook.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-simplemind-map/trunk/app.php
r2412325 r2418696 5 5 Plugin URI: https://telicom.ca/ 6 6 Author: Telicom Inc <mehedee@telicom.ca> 7 Version: 1.1. 47 Version: 1.1.5 8 8 Text Domain: wp-simplemind-map 9 9 */ -
wp-simplemind-map/trunk/readme.txt
r2412325 r2418696 3 3 Tags: simplemind map, telicom, mind map, diagram, workflow 4 4 Requires at least: 5.4.0 5 Tested up to: 5.5. 15 Tested up to: 5.5.3 6 6 Requires PHP: 7.0 7 Stable tag: 1.1. 47 Stable tag: 1.1.5 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 92 92 93 93 == Changelog == 94 = 1.1.5 = 95 * Fix jQeury error 96 94 97 = 1.1.4 = 95 98 * Fix Security Issue -
wp-simplemind-map/trunk/src/SmdmapEnqueue.php
r2412325 r2418696 22 22 { 23 23 24 wp_enqueue_script(' drop-zone-js', SMM_ASSETSURL . "add-on/image-map-resizer/imageMapResizer.min.js", array(), '1.0.0', true);25 wp_enqueue_script('form-script', SMM_ASSETSURL . "js/script.js", array( ), $this->version, true);24 wp_enqueue_script('image-resizer', SMM_ASSETSURL . "add-on/image-map-resizer/imageMapResizer.min.js", array('jquery'), '1.0.0', true); 25 wp_enqueue_script('form-script', SMM_ASSETSURL . "js/script.js", array('jquery'), $this->version, true); 26 26 27 27 wp_localize_script( -
wp-simplemind-map/trunk/src/SmdmapHook.php
r2361279 r2418696 21 21 22 22 add_action( 'update_option_smdmap_username', [$self, 'smdmap_username_after_save'], 10, 2 ); 23 add_action( 'update_option_smdmap_apikey', [$self, 'smdmap_apikey_after_save'], 10, 2 );23 // add_action( 'update_option_smdmap_apikey', [$self, 'smdmap_apikey_after_save'], 10, 2 ); 24 24 } 25 25 26 26 public function smdmap_username_after_save($old_value, $new_value) 27 27 { 28 if ( $old_value !== $new_value ) {28 // if ( $old_value !== $new_value ) { 29 29 $SmdmapTelicom = new SmdmapTelicom(); 30 30 $SmdmapTelicom->setSubscriptionStatus(); 31 }31 // } 32 32 } 33 33
Note: See TracChangeset
for help on using the changeset viewer.