Version Description
- Fixed PHP null vlaue capability
Download this release
Release Info
Developer | raptor235 |
Plugin | Sidekick |
Version | 1.6.19 |
Comparing to | |
See all releases |
Code changes from version 1.6.17 to 1.6.19
- libs/sk_config_data.php +1 -0
- readme.txt +4 -1
- sidekick.php +2 -2
libs/sk_config_data.php
CHANGED
@@ -86,6 +86,7 @@ class sk_config_data{
|
|
86 |
foreach ($data->allcaps as $cap => $val) {
|
87 |
$cap = sanitize_title($cap);
|
88 |
$cap = str_replace('-', '_', $cap);
|
|
|
89 |
$output .= "\n cap_{$cap} : $val,";
|
90 |
}
|
91 |
return $output;
|
86 |
foreach ($data->allcaps as $cap => $val) {
|
87 |
$cap = sanitize_title($cap);
|
88 |
$cap = str_replace('-', '_', $cap);
|
89 |
+
if (!$val) $val = 0;
|
90 |
$output .= "\n cap_{$cap} : $val,";
|
91 |
}
|
92 |
return $output;
|
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.17 =
|
134 |
* Fixed PHP warning on plugin version
|
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.19
|
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.19 =
|
134 |
+
* Fixed PHP null vlaue capability
|
135 |
+
|
136 |
= 1.6.17 =
|
137 |
* Fixed PHP warning on plugin version
|
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: '1.6.
|
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.19
|
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.19',
|
275 |
show_login: <?php echo ($sk_just_activated) ? "true" : "false" ?>,
|
276 |
|
277 |
// URLS
|