Changeset 2227455
- Timestamp:
- 01/14/2020 10:11:24 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
r2109141 r2227455 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.1 8', true);23 wp_enqueue_script('hc_media_script', plugins_url('/js/healcode-wp-mb-widget.js', __FILE__), array('jquery'), '1.1.19', true); 24 24 } 25 25 -
healcode-mindbody-widget/trunk/healcode-mb-widget.php
r2109141 r2227455 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.1 86 Version: 1.1.19 7 7 Author: MINDBODY 8 8 Author URI: https://www.mindbodyonline.com/ -
healcode-mindbody-widget/trunk/readme.txt
r2109141 r2227455 5 5 Requires at least: 3.0 6 6 Tested up to: 5.1.1 7 Stable tag: 1.1.1 87 Stable tag: 1.1.19 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.19 = 229 * Replace deprecated create_function 228 230 = 1.1.18 = 229 231 * Update 'tested up to' version number … … 291 293 == Upgrade Notice == 292 294 295 = 1.1.19 = 296 * Replace deprecated create_function 293 297 = 1.1.18 = 294 298 * Update 'tested up to' version number -
healcode-mindbody-widget/trunk/widget.php
r1677900 r2227455 86 86 87 87 } // end class Hc_Insert_Html_Widget 88 add_action('widgets_init', create_function('', 'return register_widget("Hc_Insert_Html_Widget");')); 88 89 add_action(‘widgets_init’, function() { return register_widget("Hc_Insert_Html_Widget"); }) 89 90 ?>
Note: See TracChangeset
for help on using the changeset viewer.