Plugin Directory

Changeset 2232896


Ignore:
Timestamp:
01/24/2020 05:17:07 PM (6 years ago)
Author:
healcode_wordpress
Message:

Merge branch 'master' of github.com:healcode/healcode-mindbody-widget

Location:
healcode-mindbody-widget/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • healcode-mindbody-widget/trunk/hc-editor-plugin.php

    r2227455 r2232896  
    2121
    2222    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);
    2424    }
    2525
  • healcode-mindbody-widget/trunk/healcode-mb-widget.php

    r2227455 r2232896  
    44Plugin URI: https://wordpress.org/plugins/healcode-mindbody-widget/
    55Description: 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.19
     6Version: 1.1.20
    77Author: MINDBODY
    88Author URI: https://www.mindbodyonline.com/
  • healcode-mindbody-widget/trunk/readme.txt

    r2227455 r2232896  
    55Requires at least: 3.0
    66Tested up to: 5.1.1
    7 Stable tag: 1.1.19
     7Stable tag: 1.1.20
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    226226== Changelog ==
    227227
     228= 1.1.20 =
     229* Fix widget_init argument type bug
    228230= 1.1.19 =
    229231* Replace deprecated create_function
     
    293295== Upgrade Notice ==
    294296
     297= 1.1.20 =
     298* Fix widget_init argument type bug
    295299= 1.1.19 =
    296300* Replace deprecated create_function
  • healcode-mindbody-widget/trunk/widget.php

    r2227455 r2232896  
    8787} // end class Hc_Insert_Html_Widget
    8888
    89 add_action(‘widgets_init’, function() { return register_widget("Hc_Insert_Html_Widget"); })
     89function Register_Hc_Insert_Html_Widget() {
     90  return register_widget('Hc_Insert_Html_Widget');
     91}
     92
     93add_action('widgets_init', 'Register_Hc_Insert_Html_Widget');
    9094?>
Note: See TracChangeset for help on using the changeset viewer.