Crop-Thumbnails - Version 1.2.2

Version Description

  • fix calling a non static function in a static statically (fixes a bug where the plugin do not run locally)
Download this release

Release Info

Developer Volkmar Kantor
Plugin Icon Crop-Thumbnails
Version 1.2.2
Comparing to
See all releases

Code changes from version 1.2.1 to 1.2.2

Files changed (3) hide show
  1. crop-thumbnails.php +2 -2
  2. functions/editor.php +1 -1
  3. readme.txt +4 -1
crop-thumbnails.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://wordpress.org/extend/plugins/crop-thumbnails/
5
  * Author: Volkmar Kantor
6
  * Author URI: https://www.totalmedial.de
7
- * Version: 1.2.1
8
  * Description: The easy way to adjust your cropped image sizes.
9
  *
10
  *
@@ -26,7 +26,7 @@
26
  */
27
 
28
 
29
- define('CROP_THUMBNAILS_VERSION','1.2.1');
30
 
31
 
32
  function cptLoadLanguage() {
4
  * Plugin URI: https://wordpress.org/extend/plugins/crop-thumbnails/
5
  * Author: Volkmar Kantor
6
  * Author URI: https://www.totalmedial.de
7
+ * Version: 1.2.2
8
  * Description: The easy way to adjust your cropped image sizes.
9
  *
10
  *
26
  */
27
 
28
 
29
+ define('CROP_THUMBNAILS_VERSION','1.2.2');
30
 
31
 
32
  function cptLoadLanguage() {
functions/editor.php CHANGED
@@ -50,7 +50,7 @@ class CropPostThumbnailsEditor {
50
  * @param string $msg the language string to fix
51
  * @return string
52
  */
53
- protected function fixJsLangStrings($msg) {
54
  return str_replace('"','"',esc_js($msg));
55
  }
56
 
50
  * @param string $msg the language string to fix
51
  * @return string
52
  */
53
+ protected static function fixJsLangStrings($msg) {
54
  return str_replace('"','"',esc_js($msg));
55
  }
56
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: post-thumbnails, images, media library
5
  Requires at least: 4.6
6
  Requires PHP: 5.3.0
7
  Tested up to: 5.0
8
- Stable tag: 1.2.1
9
  License: GPL v3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -123,6 +123,9 @@ If you fork and planning to publish the forked plugin, please contact me.
123
  5. Quicktest on settings-page, to check if your system is correct setup.
124
 
125
  == Changelog ==
 
 
 
126
  = 1.2.1 =
127
  * fix a javascript-bug that occurs in Wordpress 4.9.2 in relation with yoast seo-plugin
128
 
5
  Requires at least: 4.6
6
  Requires PHP: 5.3.0
7
  Tested up to: 5.0
8
+ Stable tag: 1.2.2
9
  License: GPL v3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
123
  5. Quicktest on settings-page, to check if your system is correct setup.
124
 
125
  == Changelog ==
126
+ = 1.2.2 =
127
+ * fix calling a non static function in a static statically (fixes a bug where the plugin do not run locally)
128
+
129
  = 1.2.1 =
130
  * fix a javascript-bug that occurs in Wordpress 4.9.2 in relation with yoast seo-plugin
131