Simple Social Icons - Version 1.0.9

Version Description

  • PHP7 compatibility
Download this release

Release Info

Developer nathanrice
Plugin Icon 128x128 Simple Social Icons
Version 1.0.9
Comparing to
See all releases

Code changes from version 1.0.8 to 1.0.9

Files changed (2) hide show
  1. readme.txt +6 -3
  2. simple-social-icons.php +2 -2
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: nathanrice, studiopress, bgardner
3
  Tags: social media, social networking, social profiles
4
  Requires at least: 4.0
5
- Tested up to: 4.1
6
- Stable tag: 1.0.8
7
 
8
  This plugin allows you to insert social icons in any widget area.
9
 
@@ -92,4 +92,7 @@ NOTE - The rights to each pictogram in the social extension are either trademark
92
  * Added Bloglovin icon
93
 
94
  = 1.0.8 =
95
- * Added border options
 
 
 
2
  Contributors: nathanrice, studiopress, bgardner
3
  Tags: social media, social networking, social profiles
4
  Requires at least: 4.0
5
+ Tested up to: 4.2.2
6
+ Stable tag: 1.0.9
7
 
8
  This plugin allows you to insert social icons in any widget area.
9
 
92
  * Added Bloglovin icon
93
 
94
  = 1.0.8 =
95
+ * Added border options
96
+
97
+ = 1.0.9 =
98
+ * PHP7 compatibility
simple-social-icons.php CHANGED
@@ -6,7 +6,7 @@ Description: A simple, CSS and icon font driven social icons widget.
6
  Author: Nathan Rice
7
  Author URI: http://www.nathanrice.net/
8
 
9
- Version: 1.0.8
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
@@ -184,7 +184,7 @@ class Simple_Social_Icons_Widget extends WP_Widget {
184
  'id_base' => 'simple-social-icons',
185
  );
186
 
187
- $this->WP_Widget( 'simple-social-icons', __( 'Simple Social Icons', 'ssiw' ), $widget_ops, $control_ops );
188
 
189
  /** Enqueue icon font */
190
  add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_css' ) );
6
  Author: Nathan Rice
7
  Author URI: http://www.nathanrice.net/
8
 
9
+ Version: 1.0.9
10
 
11
  License: GNU General Public License v2.0 (or later)
12
  License URI: http://www.opensource.org/licenses/gpl-license.php
184
  'id_base' => 'simple-social-icons',
185
  );
186
 
187
+ parent::__construct( 'simple-social-icons', __( 'Simple Social Icons', 'ssiw' ), $widget_ops, $control_ops );
188
 
189
  /** Enqueue icon font */
190
  add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_css' ) );