Version Description
- Fixed: google plus option #60
Download this release
Release Info
Developer | utahvich |
Plugin | WP Social Bookmarking Light |
Version | 2.0.7 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.7
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://gumroad.com/l/rWLrL
|
|
4 |
Tags: social, bookmarks, bookmarking, Hatena, Twitter, Facebook, Tumblr, Google Bookmark, Delicious, Digg, reddit, LinkedIn, Instapaper, StumbleUpon, mixi, gree, atode, toread, line, pocket, Pinterest
|
5 |
Requires at least: 4.0.0
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 2.0.
|
8 |
|
9 |
This plugin inserts social share links at the top or bottom of each post.
|
10 |
|
@@ -52,6 +52,9 @@ This is the list of used social sites:
|
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
55 |
= 2.0.6 =
|
56 |
* Fixed: pinterest behavior [#59](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/59)
|
57 |
|
4 |
Tags: social, bookmarks, bookmarking, Hatena, Twitter, Facebook, Tumblr, Google Bookmark, Delicious, Digg, reddit, LinkedIn, Instapaper, StumbleUpon, mixi, gree, atode, toread, line, pocket, Pinterest
|
5 |
Requires at least: 4.0.0
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 2.0.7
|
8 |
|
9 |
This plugin inserts social share links at the top or bottom of each post.
|
10 |
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 2.0.7 =
|
56 |
+
* Fixed: google plus option [#60](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/60)
|
57 |
+
|
58 |
= 2.0.6 =
|
59 |
* Fixed: pinterest behavior [#59](https://github.com/utahta/WP-Social-Bookmarking-Light/pull/59)
|
60 |
|
src/WpSocialBookmarkingLight/Resources/views/Admin/page.html.twig
CHANGED
@@ -529,7 +529,7 @@
|
|
529 |
"vi": "Vietnamese",
|
530 |
} %}
|
531 |
{% for key, value in google_langs %}
|
532 |
-
<option {{ option.google_plus_one.lang == key ? "selected" : "" }} value='{{ key }}'>{{
|
533 |
{% endfor %}
|
534 |
</select>
|
535 |
</td>
|
529 |
"vi": "Vietnamese",
|
530 |
} %}
|
531 |
{% for key, value in google_langs %}
|
532 |
+
<option {{ option.google_plus_one.lang == key ? "selected" : "" }} value='{{ key }}'>{{ value }}</option>
|
533 |
{% endfor %}
|
534 |
</select>
|
535 |
</td>
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit54fa79f7a05b6712e69df041c62411b5::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitf2179522563cb16eead252839f47c79a
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit54fa79f7a05b6712e69df041c62411b5
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit54fa79f7a05b6712e69df041c62411b5', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit54fa79f7a05b6712e69df041c62411b5', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit54fa79f7a05b6712e69df041c62411b5::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $fallbackDirsPsr4 = array (
|
10 |
0 => __DIR__ . '/../..' . '/src',
|
@@ -23,8 +23,8 @@ class ComposerStaticInitf2179522563cb16eead252839f47c79a
|
|
23 |
public static function getInitializer(ClassLoader $loader)
|
24 |
{
|
25 |
return \Closure::bind(function () use ($loader) {
|
26 |
-
$loader->fallbackDirsPsr4 =
|
27 |
-
$loader->prefixesPsr0 =
|
28 |
|
29 |
}, null, ClassLoader::class);
|
30 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit54fa79f7a05b6712e69df041c62411b5
|
8 |
{
|
9 |
public static $fallbackDirsPsr4 = array (
|
10 |
0 => __DIR__ . '/../..' . '/src',
|
23 |
public static function getInitializer(ClassLoader $loader)
|
24 |
{
|
25 |
return \Closure::bind(function () use ($loader) {
|
26 |
+
$loader->fallbackDirsPsr4 = ComposerStaticInit54fa79f7a05b6712e69df041c62411b5::$fallbackDirsPsr4;
|
27 |
+
$loader->prefixesPsr0 = ComposerStaticInit54fa79f7a05b6712e69df041c62411b5::$prefixesPsr0;
|
28 |
|
29 |
}, null, ClassLoader::class);
|
30 |
}
|
wp-social-bookmarking-light.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://github.com/utahta/WP-Social-Bookmarking-Light
|
|
5 |
Description: This plugin inserts social share links at the top or bottom of each post.
|
6 |
Author: utahta
|
7 |
Author URI: https://github.com/utahta/WP-Social-Bookmarking-Light
|
8 |
-
Version: 2.0.
|
9 |
*/
|
10 |
/*
|
11 |
Copyright 2010 utahta (email : labs.ninxit@gmail.com)
|
5 |
Description: This plugin inserts social share links at the top or bottom of each post.
|
6 |
Author: utahta
|
7 |
Author URI: https://github.com/utahta/WP-Social-Bookmarking-Light
|
8 |
+
Version: 2.0.7
|
9 |
*/
|
10 |
/*
|
11 |
Copyright 2010 utahta (email : labs.ninxit@gmail.com)
|