Smart YouTube PRO - Version 2.7.1

Version Description

Download this release

Release Info

Developer freediver
Plugin Icon 128x128 Smart YouTube PRO
Version 2.7.1
Comparing to
See all releases

Code changes from version 2.7 to 2.7.1

Files changed (1) hide show
  1. smartyoutube.php +6 -3
smartyoutube.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Smart Youtube
4
  Plugin URI: http://www.prelovac.com/vladimir/wordpress-plugins/smart-youtube
5
  Description: Insert YouTube videos in posts, comments and RSS feeds with ease and full customization.
6
  Author: Vladimir Prelovac
7
- Version: 2.7
8
  Author URI: http://www.prelovac.com/vladimir/
9
 
10
  Updates:
@@ -539,8 +539,11 @@ function yte_install(){
539
  }
540
 
541
  // register widget
542
- register_sidebar_widget('Smart YouTube', 'yte_widget');
543
- register_widget_control('Smart YouTube', 'yte_widgetcontrol');
 
 
 
544
 
545
 
546
  }
4
  Plugin URI: http://www.prelovac.com/vladimir/wordpress-plugins/smart-youtube
5
  Description: Insert YouTube videos in posts, comments and RSS feeds with ease and full customization.
6
  Author: Vladimir Prelovac
7
+ Version: 2.7.1
8
  Author URI: http://www.prelovac.com/vladimir/
9
 
10
  Updates:
539
  }
540
 
541
  // register widget
542
+ if (function_exists('register_sidebar_widget'))
543
+ register_sidebar_widget('Smart YouTube', 'yte_widget');
544
+
545
+ if (function_exists('register_widget_control'))
546
+ register_widget_control('Smart YouTube', 'yte_widgetcontrol');
547
 
548
 
549
  }