Version Description
- Jul 16, 2019 =
- Fixed: Prints a warning since PHP/7.1: "Notice: A non well formed numeric value encountered in /inc/php/versioning.php on line 43".
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | All Meta Tags |
Version | 4.35.1 |
Comparing to | |
See all releases |
Code changes from version 4.35 to 4.35.1
- all-meta-tags.php +1 -1
- humans.txt +1 -1
- inc/php/versioning.php +2 -2
- readme.txt +4 -1
all-meta-tags.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add your custom meta tags to the WordPress website's head section. This is a must have tool for authors and website's owners.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
-
* Version: 4.35
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily and safely add your custom meta tags to the WordPress website's head section. This is a must have tool for authors and website's owners.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.35.1
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
humans.txt
CHANGED
@@ -29,5 +29,5 @@
|
|
29 |
Monica K.
|
30 |
|
31 |
/* META */
|
32 |
-
Last update:
|
33 |
See: http://humanstxt.org/
|
29 |
Monica K.
|
30 |
|
31 |
/* META */
|
32 |
+
Last update: 2019/02/21
|
33 |
See: http://humanstxt.org/
|
inc/php/versioning.php
CHANGED
@@ -37,10 +37,10 @@ function spacexchimp_p004_versioning() {
|
|
37 |
$version_db = substr( $version_db, 0, 4 );
|
38 |
$version_files = substr( $version_files, 0, 4 );
|
39 |
if ( ! is_numeric( $version_db ) ) {
|
40 |
-
$version_db = number_format( floor( $version_db * 100 ) / 100, 1, '.', '' );
|
41 |
}
|
42 |
if ( ! is_numeric( $version_files ) ) {
|
43 |
-
$version_files = number_format( floor( $version_files * 100 ) / 100, 1, '.', '' );
|
44 |
}
|
45 |
|
46 |
// Count the number of decimal digits in version number
|
37 |
$version_db = substr( $version_db, 0, 4 );
|
38 |
$version_files = substr( $version_files, 0, 4 );
|
39 |
if ( ! is_numeric( $version_db ) ) {
|
40 |
+
$version_db = number_format( floor( floatval( $version_db ) * 100 ) / 100, 1, '.', '' );
|
41 |
}
|
42 |
if ( ! is_numeric( $version_files ) ) {
|
43 |
+
$version_files = number_format( floor( floatval( $version_files ) * 100 ) / 100, 1, '.', '' );
|
44 |
}
|
45 |
|
46 |
// Count the number of decimal digits in version number
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: meta, tag, tags, custom, simple, plugin, twitter, facebook, google, google
|
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.2
|
7 |
-
Stable tag: 4.35
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -220,6 +220,9 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
220 |
|
221 |
== Changelog ==
|
222 |
|
|
|
|
|
|
|
223 |
= 4.35 - Jun 7, 2019 =
|
224 |
* Improvement: WooCommerce product data that uses to generate the Google Shopping structured data are now cleaned from HTML and PHP tags, and quotation marks are converted.
|
225 |
* Fix: The it_IT and ru_RU translations are corrected.
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.2
|
7 |
+
Stable tag: 4.35.1
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
220 |
|
221 |
== Changelog ==
|
222 |
|
223 |
+
= 4.35.1 - Jul 16, 2019 =
|
224 |
+
* Fixed: Prints a warning since PHP/7.1: "Notice: A non well formed numeric value encountered in /inc/php/versioning.php on line 43".
|
225 |
+
|
226 |
= 4.35 - Jun 7, 2019 =
|
227 |
* Improvement: WooCommerce product data that uses to generate the Google Shopping structured data are now cleaned from HTML and PHP tags, and quotation marks are converted.
|
228 |
* Fix: The it_IT and ru_RU translations are corrected.
|