Changeset 2232896
- Timestamp:
- 01/24/2020 05:17:07 PM (6 years ago)
- Location:
- healcode-mindbody-widget/trunk
- Files:
-
- 4 edited
-
hc-editor-plugin.php (modified) (1 diff)
-
healcode-mb-widget.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
healcode-mindbody-widget/trunk/hc-editor-plugin.php
r2227455 r2232896 21 21 22 22 public function include_hc_media_button_js() { 23 wp_enqueue_script('hc_media_script', plugins_url('/js/healcode-wp-mb-widget.js', __FILE__), array('jquery'), '1.1. 19', true);23 wp_enqueue_script('hc_media_script', plugins_url('/js/healcode-wp-mb-widget.js', __FILE__), array('jquery'), '1.1.20', true); 24 24 } 25 25 -
healcode-mindbody-widget/trunk/healcode-mb-widget.php
r2227455 r2232896 4 4 Plugin URI: https://wordpress.org/plugins/healcode-mindbody-widget/ 5 5 Description: Add MINDBODY Widgets to your WordPress website. This plugin lets you generate a shortcode for a widget. The shortcodes can be used in your pages, posts and widgets. 6 Version: 1.1. 196 Version: 1.1.20 7 7 Author: MINDBODY 8 8 Author URI: https://www.mindbodyonline.com/ -
healcode-mindbody-widget/trunk/readme.txt
r2227455 r2232896 5 5 Requires at least: 3.0 6 6 Tested up to: 5.1.1 7 Stable tag: 1.1. 197 Stable tag: 1.1.20 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 226 226 == Changelog == 227 227 228 = 1.1.20 = 229 * Fix widget_init argument type bug 228 230 = 1.1.19 = 229 231 * Replace deprecated create_function … … 293 295 == Upgrade Notice == 294 296 297 = 1.1.20 = 298 * Fix widget_init argument type bug 295 299 = 1.1.19 = 296 300 * Replace deprecated create_function -
healcode-mindbody-widget/trunk/widget.php
r2227455 r2232896 87 87 } // end class Hc_Insert_Html_Widget 88 88 89 add_action(‘widgets_init’, function() { return register_widget("Hc_Insert_Html_Widget"); }) 89 function Register_Hc_Insert_Html_Widget() { 90 return register_widget('Hc_Insert_Html_Widget'); 91 } 92 93 add_action('widgets_init', 'Register_Hc_Insert_Html_Widget'); 90 94 ?>
Note: See TracChangeset
for help on using the changeset viewer.