jQuery Pin It Button for Images - Version 1.41

Version Description

  • Release 2016-02-12
  • Syntax error for older versions of PHP fixed
Download this release

Release Info

Developer mrsztuczkens
Plugin Icon wp plugin jQuery Pin It Button for Images
Version 1.41
Comparing to
See all releases

Code changes from version 1.40 to 1.41

includes/admin/class-jpibfi-admin.php CHANGED
@@ -83,7 +83,7 @@ class JPIBFI_Admin {
83
  /* Meta box for each post and page */
84
  public function add_meta_box() {
85
  /* TODO check if has permissions */
86
- $post_types = ['post', 'page'];
87
  foreach($post_types as $pt){
88
  add_meta_box(
89
  'jpibfi_settings_id',
83
  /* Meta box for each post and page */
84
  public function add_meta_box() {
85
  /* TODO check if has permissions */
86
+ $post_types = array("post", "page");
87
  foreach($post_types as $pt){
88
  add_meta_box(
89
  'jpibfi_settings_id',
jquery-pin-it-button-for-images.php CHANGED
@@ -6,7 +6,7 @@ Description: Highlights images on hover and adds a "Pin It" button over them for
6
  Text Domain: jquery-pin-it-button-for-images
7
  Domain Path: /languages
8
  Author: Marcin Skrzypiec
9
- Version: 1.40
10
  Author URI: http://mrsztuczkens.me/
11
  */
12
 
@@ -49,7 +49,7 @@ if ( ! class_exists( 'jQuery_Pin_It_Button_For_Images' ) ) :
49
  /* VERSIONING */
50
  //plugin version
51
  if ( ! defined( 'JPIBFI_VERSION' ) )
52
- define( 'JPIBFI_VERSION', '1.40' );
53
 
54
  //used in versioning css and js files
55
  if ( ! defined( 'JPIBFI_VERSION_MINOR' ) )
6
  Text Domain: jquery-pin-it-button-for-images
7
  Domain Path: /languages
8
  Author: Marcin Skrzypiec
9
+ Version: 1.41
10
  Author URI: http://mrsztuczkens.me/
11
  */
12
 
49
  /* VERSIONING */
50
  //plugin version
51
  if ( ! defined( 'JPIBFI_VERSION' ) )
52
+ define( 'JPIBFI_VERSION', '1.41' );
53
 
54
  //used in versioning css and js files
55
  if ( ! defined( 'JPIBFI_VERSION_MINOR' ) )
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: mrsztuczkens, redearthdesign, brocheafoin, robertark
3
  Tags: pinterest, pin it, button, image, images, pinit, social media, hover, click, photo, photos
4
  Requires at least: 3.3.0
5
  Tested up to: 4.4.2
6
- Stable tag: 1.40
7
  License: GPLv2 or later
8
 
9
  Highlights images on hover and adds a Pinterest "Pin It" button over them for easy pinning.
@@ -75,6 +75,10 @@ Please report them in the plugin's support forum on Wordpress.org.
75
 
76
  == Changelog ==
77
 
 
 
 
 
78
  = 1.40 =
79
  * Release 2016-02-11
80
  * Backend and frontend JavaScript rewritten
@@ -226,6 +230,9 @@ Please report them in the plugin's support forum on Wordpress.org.
226
 
227
  == Upgrade Notice ==
228
 
 
 
 
229
  = 1.40 =
230
  Minor code improvements.
231
 
3
  Tags: pinterest, pin it, button, image, images, pinit, social media, hover, click, photo, photos
4
  Requires at least: 3.3.0
5
  Tested up to: 4.4.2
6
+ Stable tag: 1.41
7
  License: GPLv2 or later
8
 
9
  Highlights images on hover and adds a Pinterest "Pin It" button over them for easy pinning.
75
 
76
  == Changelog ==
77
 
78
+ = 1.41 =
79
+ * Release 2016-02-12
80
+ * Syntax error for older versions of PHP fixed
81
+
82
  = 1.40 =
83
  * Release 2016-02-11
84
  * Backend and frontend JavaScript rewritten
230
 
231
  == Upgrade Notice ==
232
 
233
+ = 1.41 =
234
+ Syntax error for older versions of PHP fixed.
235
+
236
  = 1.40 =
237
  Minor code improvements.
238