Version Description
- Support for HTTPS in the dashboard (thanks to Mile Rosu)
Download this release
Release Info
Developer | freediver |
Plugin | Smart YouTube PRO |
Version | 4.1.4 |
Comparing to | |
See all releases |
Code changes from version 4.1.2 to 4.1.4
- readme.txt +3 -0
- smartyoutube.php +3 -4
readme.txt
CHANGED
@@ -40,6 +40,9 @@ Plugin by Vladimir Prelovac. Also check out <a href="http://managewp.com">Manage
|
|
40 |
|
41 |
== Changelog ==
|
42 |
|
|
|
|
|
|
|
43 |
= 4.1.3 =
|
44 |
* Fixed support for videos in RSS feed
|
45 |
|
40 |
|
41 |
== Changelog ==
|
42 |
|
43 |
+
= 4.1.4 =
|
44 |
+
* Support for HTTPS in the dashboard (thanks to Mile Rosu)
|
45 |
+
|
46 |
= 4.1.3 =
|
47 |
* Fixed support for videos in RSS feed
|
48 |
|
smartyoutube.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Smart Youtube PRO
|
|
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: 4.1.
|
8 |
Author URI: http://www.prelovac.com/vladimir/
|
9 |
|
10 |
|
@@ -88,9 +88,8 @@ class SmartYouTube_PRO {
|
|
88 |
function __construct() {
|
89 |
$this->local_version = '1.0'; // TODO: Change this number???
|
90 |
|
91 |
-
$this->plugin_url =
|
92 |
-
|
93 |
-
trailingslashit( get_bloginfo( 'wpurl' ) ) . PLUGINDIR . '/' . dirname( plugin_basename( __FILE__ ) );
|
94 |
|
95 |
$this->key = 'smart_youtube_pro';
|
96 |
$this->first_post_on_archive = false;
|
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: 4.1.4
|
8 |
Author URI: http://www.prelovac.com/vladimir/
|
9 |
|
10 |
|
88 |
function __construct() {
|
89 |
$this->local_version = '1.0'; // TODO: Change this number???
|
90 |
|
91 |
+
$this->plugin_url = trailingslashit(plugins_url(null,__FILE__));
|
92 |
+
|
|
|
93 |
|
94 |
$this->key = 'smart_youtube_pro';
|
95 |
$this->first_post_on_archive = false;
|