Version Description
Corrected typo error for constant WP_PLUGIN_URL in vsw_tinymce.php
Download this release
Release Info
Developer | denzel_chia |
Plugin | Video Sidebar Widgets |
Version | 5.6 |
Comparing to | |
See all releases |
Code changes from version 5.5 to 5.6
- readme.txt +6 -1
- video-sidebar-widgets.php +1 -1
- vsw_tinymce/vsw_tinymce.php +3 -3
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Author link: http://denzeldesigns.com
|
|
5 |
Tags:video, widget, widgets, sidebar, videos, video sidebar widget, video widget, embed video, video embed, video in sidebar, youtube, vimeo, veoh, myspace video, revver, blip tv, tudou, youku, 6.cn, google videos, tangle
|
6 |
Requires at least:2.8.1
|
7 |
Tested up to: 3.5.1
|
8 |
-
Stable tag:5.
|
9 |
|
10 |
== Description ==
|
11 |
|
@@ -15,6 +15,11 @@ Stable tag:5.5
|
|
15 |
== Changelog ==
|
16 |
|
17 |
|
|
|
|
|
|
|
|
|
|
|
18 |
= 5.5 =
|
19 |
|
20 |
Previous YouTube autoplay fix does not work for some users. Redo it according to loSan and qcdars's solution http://wordpress.org/support/topic/cant-turn-off-autoplay
|
5 |
Tags:video, widget, widgets, sidebar, videos, video sidebar widget, video widget, embed video, video embed, video in sidebar, youtube, vimeo, veoh, myspace video, revver, blip tv, tudou, youku, 6.cn, google videos, tangle
|
6 |
Requires at least:2.8.1
|
7 |
Tested up to: 3.5.1
|
8 |
+
Stable tag:5.6
|
9 |
|
10 |
== Description ==
|
11 |
|
15 |
== Changelog ==
|
16 |
|
17 |
|
18 |
+
= 5.6 =
|
19 |
+
|
20 |
+
Corrected typo error for constant WP_PLUGIN_URL in vsw_tinymce.php
|
21 |
+
|
22 |
+
|
23 |
= 5.5 =
|
24 |
|
25 |
Previous YouTube autoplay fix does not work for some users. Redo it according to loSan and qcdars's solution http://wordpress.org/support/topic/cant-turn-off-autoplay
|
video-sidebar-widgets.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Video Sidebar Widgets
|
4 |
Plugin URI: http://denzeldesigns.com/wordpress-plugins/video-sidebar-widgets/
|
5 |
-
Version: 5.
|
6 |
Description: Video Sidebar Widgets to display videos such as Vimeo, YouTube, MySpace Videos etc. Now with added shortcode and quicktag to embed video in post and page content.
|
7 |
Author: Denzel Chia
|
8 |
Author URI: http://denzeldesigns.com/
|
2 |
/*
|
3 |
Plugin Name: Video Sidebar Widgets
|
4 |
Plugin URI: http://denzeldesigns.com/wordpress-plugins/video-sidebar-widgets/
|
5 |
+
Version: 5.6
|
6 |
Description: Video Sidebar Widgets to display videos such as Vimeo, YouTube, MySpace Videos etc. Now with added shortcode and quicktag to embed video in post and page content.
|
7 |
Author: Denzel Chia
|
8 |
Author URI: http://denzeldesigns.com/
|
vsw_tinymce/vsw_tinymce.php
CHANGED
@@ -29,10 +29,10 @@ function dd_vsw_button($tiny_buttons) {
|
|
29 |
// Load the TinyMCE plugin : editor_plugin.js (wp2.5)
|
30 |
function dd_vsw_tinymce_plugin($plugin_array) {
|
31 |
|
32 |
-
//check if defined
|
33 |
-
if (defined('
|
34 |
|
35 |
-
$url_to_plugin =
|
36 |
|
37 |
}else{
|
38 |
//if not assume it is default location.
|
29 |
// Load the TinyMCE plugin : editor_plugin.js (wp2.5)
|
30 |
function dd_vsw_tinymce_plugin($plugin_array) {
|
31 |
|
32 |
+
//check if defined WP_PLUGIN_URL
|
33 |
+
if (defined('WP_PLUGIN_URL')) {
|
34 |
|
35 |
+
$url_to_plugin = WP_PLUGIN_URL."/video-sidebar-widgets/vsw_tinymce/editor_plugin.js";
|
36 |
|
37 |
}else{
|
38 |
//if not assume it is default location.
|