Version Description
- Fixed PHP warning on plugin version
Download this release
Release Info
Developer | raptor235 |
Plugin | Sidekick |
Version | 1.6.17 |
Comparing to | |
See all releases |
Code changes from version 1.6.16 to 1.6.17
- readme.txt +4 -1
- sidekick.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.sidekick.pro
|
|
4 |
Tags: help, tutorial, training, learn, learning, sidekick, guide, teach, video, manual, videos, wphelp, support, instructions, question, questions, answers, answer, clippy, q&a, wpuniversity, helper, walkthrough
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.0
|
7 |
-
Stable tag: 1.6.
|
8 |
License: GNU Version 2 or Any Later Version
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -130,6 +130,9 @@ Absolutely. In fact, we rely on users like you to tell us about things that nee
|
|
130 |
|
131 |
== Changelog ==
|
132 |
|
|
|
|
|
|
|
133 |
= 1.6.16 =
|
134 |
* Changed deactivation flow so user gets to keep their activation id
|
135 |
|
4 |
Tags: help, tutorial, training, learn, learning, sidekick, guide, teach, video, manual, videos, wphelp, support, instructions, question, questions, answers, answer, clippy, q&a, wpuniversity, helper, walkthrough
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 1.6.17
|
8 |
License: GNU Version 2 or Any Later Version
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
130 |
|
131 |
== Changelog ==
|
132 |
|
133 |
+
= 1.6.17 =
|
134 |
+
* Fixed PHP warning on plugin version
|
135 |
+
|
136 |
= 1.6.16 =
|
137 |
* Changed deactivation flow so user gets to keep their activation id
|
138 |
|
sidekick.php
CHANGED
@@ -6,7 +6,7 @@ Plugin URL: http://wordpress.org/plugins/sidekick/
|
|
6 |
Description: Adds a real-time WordPress training walkthroughs right in your Dashboard
|
7 |
Requires at least: 3.8
|
8 |
Tested up to: 4.0
|
9 |
-
Version: 1.6.
|
10 |
Author: Sidekick.pro
|
11 |
Author URI: http://www.sidekick.pro
|
12 |
*/
|
@@ -271,7 +271,7 @@ class Sidekick{
|
|
271 |
// Generic Info
|
272 |
just_activated: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
273 |
platform_version: null,
|
274 |
-
plugin_version: '
|
275 |
show_login: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
276 |
|
277 |
// URLS
|
6 |
Description: Adds a real-time WordPress training walkthroughs right in your Dashboard
|
7 |
Requires at least: 3.8
|
8 |
Tested up to: 4.0
|
9 |
+
Version: 1.6.17
|
10 |
Author: Sidekick.pro
|
11 |
Author URI: http://www.sidekick.pro
|
12 |
*/
|
271 |
// Generic Info
|
272 |
just_activated: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
273 |
platform_version: null,
|
274 |
+
plugin_version: '1.6.17',
|
275 |
show_login: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
276 |
|
277 |
// URLS
|