Version Description
- WordPress 3.1 update
Download this release
Release Info
Developer | freediver |
Plugin | Smart YouTube PRO |
Version | 3.8.4 |
Comparing to | |
See all releases |
Code changes from version 3.8.3 to 3.8.4
- readme.txt +4 -1
- smartyoutube.class.php +2 -2
- smartyoutube.php +1 -1
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: freediver
|
|
3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=520781390
|
4 |
Tags: youtube, video, play, media, Post, posts, admin
|
5 |
Requires at least: 2.0
|
6 |
-
Tested up to: 3.
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Smart Youtube plugin allows you to insert full featured YouTube videos into your post, comments and in RSS feed.
|
@@ -37,6 +37,9 @@ Plugin by Vladimir Prelovac. Looking for <a href="http://www.prelovac.com/vladim
|
|
37 |
|
38 |
== Changelog ==
|
39 |
|
|
|
|
|
|
|
40 |
= 3.8.3 =
|
41 |
* Fixed a bug that caused video options not to be set to default
|
42 |
|
3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=520781390
|
4 |
Tags: youtube, video, play, media, Post, posts, admin
|
5 |
Requires at least: 2.0
|
6 |
+
Tested up to: 3.1
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Smart Youtube plugin allows you to insert full featured YouTube videos into your post, comments and in RSS feed.
|
37 |
|
38 |
== Changelog ==
|
39 |
|
40 |
+
= 3.8.4 =
|
41 |
+
* WordPress 3.1 update
|
42 |
+
|
43 |
= 3.8.3 =
|
44 |
* Fixed a bug that caused video options not to be set to default
|
45 |
|
smartyoutube.class.php
CHANGED
@@ -144,8 +144,8 @@ $this->options['iframe'] = !isset($_POST['iframe']) ? 'off' : 'on';
|
|
144 |
$disp_heightside = $this->options['heightside'];
|
145 |
|
146 |
$disp_autoplay = $this->options['autoplay'] ? 'checked="checked"' : '';
|
147 |
-
$disp_rel = $this->options['rel'] ? 'checked="checked"' : '';
|
148 |
-
$disp_rel2
|
149 |
$disp_border = $this->options['border'] ? 'checked="checked"' : '';
|
150 |
$disp_color = $this->options['color'];
|
151 |
$disp_posts = $this->options['posts'] == 'on' ? 'checked="checked"' : '' ;
|
144 |
$disp_heightside = $this->options['heightside'];
|
145 |
|
146 |
$disp_autoplay = $this->options['autoplay'] ? 'checked="checked"' : '';
|
147 |
+
$disp_rel = $this->options['rel'] ? 'checked="checked"' : '';
|
148 |
+
$disp_rel2 = $this->options['rel'] ? '' : 'checked="checked"';
|
149 |
$disp_border = $this->options['border'] ? 'checked="checked"' : '';
|
150 |
$disp_color = $this->options['color'];
|
151 |
$disp_posts = $this->options['posts'] == 'on' ? 'checked="checked"' : '' ;
|
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: 3.8.
|
8 |
Author URI: http://www.prelovac.com/vladimir/
|
9 |
|
10 |
|
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: 3.8.4
|
8 |
Author URI: http://www.prelovac.com/vladimir/
|
9 |
|
10 |
|