Version Description
- Fixed users permission
Download this release
Release Info
| Developer | xradar |
| Plugin | |
| Version | 1.7.9 |
| Comparing to | |
| See all releases | |
Code changes from version 1.7.8 to 1.7.9
- readme.txt +6 -3
- simple-social-buttons.php +4 -4
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: xradar
|
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=UD823RE2F623Q&lc=US&item_name=WP%20Simple%20Social%20Buttons&item_number=Support%20Open%20Source&no_note=1&no_shipping=1¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
|
| 4 |
Tags: facebook, google, twitter, pinterest, plus one, like it, like, share, pin, pin it
|
| 5 |
Requires at least: 2.8
|
| 6 |
-
Tested up to:
|
| 7 |
-
Stable tag: 1.7.
|
| 8 |
|
| 9 |
Insert and customize social buttons: Facebook Like it, Google plus +1, Twitter share, Pinterest Pin it. Share your content with friends.
|
| 10 |
|
|
@@ -45,7 +45,7 @@ Simple Social Buttons is currently in the following languages:
|
|
| 45 |
- Ukrainian
|
| 46 |
|
| 47 |
For more information about Wordpress and SEO, visit my blog [Rabinek.pl](http://www.rabinek.pl/ "Paweł Rabinek - Blog SEO") (in polish) and my company [RedSEO](http://www.redseo.pl/ "RedSEO") (in polish).
|
| 48 |
-
|
| 49 |
|
| 50 |
== Installation ==
|
| 51 |
|
|
@@ -201,3 +201,6 @@ Make sure you have set WPLANG in wp-config.php file. Correct values are "en_US"
|
|
| 201 |
|
| 202 |
= 1.7.8 =
|
| 203 |
* Fixed PHP warning
|
|
|
|
|
|
|
|
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=UD823RE2F623Q&lc=US&item_name=WP%20Simple%20Social%20Buttons&item_number=Support%20Open%20Source&no_note=1&no_shipping=1¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
|
| 4 |
Tags: facebook, google, twitter, pinterest, plus one, like it, like, share, pin, pin it
|
| 5 |
Requires at least: 2.8
|
| 6 |
+
Tested up to: 4.8
|
| 7 |
+
Stable tag: 1.7.9
|
| 8 |
|
| 9 |
Insert and customize social buttons: Facebook Like it, Google plus +1, Twitter share, Pinterest Pin it. Share your content with friends.
|
| 10 |
|
| 45 |
- Ukrainian
|
| 46 |
|
| 47 |
For more information about Wordpress and SEO, visit my blog [Rabinek.pl](http://www.rabinek.pl/ "Paweł Rabinek - Blog SEO") (in polish) and my company [RedSEO](http://www.redseo.pl/ "RedSEO") (in polish).
|
| 48 |
+
|
| 49 |
|
| 50 |
== Installation ==
|
| 51 |
|
| 201 |
|
| 202 |
= 1.7.8 =
|
| 203 |
* Fixed PHP warning
|
| 204 |
+
|
| 205 |
+
= 1.7.9 =
|
| 206 |
+
* Fixed users permission
|
simple-social-buttons.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
Plugin URI: http://www.rabinek.pl/simple-social-buttons-wordpress/
|
| 5 |
Description: Insert social buttons into posts and archives: Facebook "Like it", Google Plus One "+1", Twitter share and Pinterest.
|
| 6 |
Author: Paweł Rabinek
|
| 7 |
-
Version: 1.7.
|
| 8 |
Author URI: http://www.rabinek.pl/
|
| 9 |
*/
|
| 10 |
|
|
@@ -35,7 +35,7 @@
|
|
| 35 |
|
| 36 |
class SimpleSocialButtonsPR {
|
| 37 |
var $pluginName = 'Simple Social Buttons';
|
| 38 |
-
var $pluginVersion = '1.7.
|
| 39 |
var $pluginPrefix = 'ssb_pr_';
|
| 40 |
var $hideCustomMetaKey = '_ssb_hide';
|
| 41 |
|
|
@@ -453,8 +453,8 @@ class SimpleSocialButtonsPR_Admin extends SimpleSocialButtonsPR {
|
|
| 453 |
}
|
| 454 |
|
| 455 |
public function admin_actions() {
|
| 456 |
-
if (current_user_can('
|
| 457 |
-
add_options_page('Simple Social Buttons ', 'Simple Social Buttons ', "
|
| 458 |
}
|
| 459 |
|
| 460 |
public function admin_page() {
|
| 4 |
Plugin URI: http://www.rabinek.pl/simple-social-buttons-wordpress/
|
| 5 |
Description: Insert social buttons into posts and archives: Facebook "Like it", Google Plus One "+1", Twitter share and Pinterest.
|
| 6 |
Author: Paweł Rabinek
|
| 7 |
+
Version: 1.7.9
|
| 8 |
Author URI: http://www.rabinek.pl/
|
| 9 |
*/
|
| 10 |
|
| 35 |
|
| 36 |
class SimpleSocialButtonsPR {
|
| 37 |
var $pluginName = 'Simple Social Buttons';
|
| 38 |
+
var $pluginVersion = '1.7.9';
|
| 39 |
var $pluginPrefix = 'ssb_pr_';
|
| 40 |
var $hideCustomMetaKey = '_ssb_hide';
|
| 41 |
|
| 453 |
}
|
| 454 |
|
| 455 |
public function admin_actions() {
|
| 456 |
+
if (current_user_can('activate_plugins'))
|
| 457 |
+
add_options_page('Simple Social Buttons ', 'Simple Social Buttons ', "activate_plugins", 'simple-social-buttons', array(&$this, 'admin_page') );
|
| 458 |
}
|
| 459 |
|
| 460 |
public function admin_page() {
|
