Version Description
- Bug Fixes:
- fixing a small reporting issue
Download this release
Release Info
Developer | deconf |
Plugin | Google Analytics Dashboard for WP (GADWP) |
Version | 5.2.3.1 |
Comparing to | |
See all releases |
Code changes from version 5.2.3 to 5.2.3.1
- admin/settings.php +1 -1
- admin/setup.php +1 -1
- gadwp.php +2 -2
- readme.txt +5 -1
admin/settings.php
CHANGED
@@ -1256,7 +1256,7 @@ final class GADWP_Settings {
|
|
1256 |
if ( isset( $_POST['Reset_Err'] ) ) {
|
1257 |
if ( isset( $_POST['gadwp_security'] ) && wp_verify_nonce( $_POST['gadwp_security'], 'gadwp_form' ) ) {
|
1258 |
|
1259 |
-
if (
|
1260 |
|
1261 |
$info = GADWP_Tools::system_info();
|
1262 |
$info .= 'GADWP Version: ' . GADWP_CURRENT_VERSION;
|
1256 |
if ( isset( $_POST['Reset_Err'] ) ) {
|
1257 |
if ( isset( $_POST['gadwp_security'] ) && wp_verify_nonce( $_POST['gadwp_security'], 'gadwp_form' ) ) {
|
1258 |
|
1259 |
+
if ( GADWP_Tools::get_cache( 'gapi_errors' ) || GADWP_Tools::get_cache( 'last_error' ) ) {
|
1260 |
|
1261 |
$info = GADWP_Tools::system_info();
|
1262 |
$info .= 'GADWP Version: ' . GADWP_CURRENT_VERSION;
|
admin/setup.php
CHANGED
@@ -368,7 +368,7 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
|
|
368 |
if ( get_option( 'gadwp_got_updated' ) ) :
|
369 |
?>
|
370 |
<div id="gadwp-notice" class="notice is-dismissible">
|
371 |
-
<p><?php echo sprintf( __('Google Analytics Dashboard for WP has been updated to version %s.', 'google-analytics-dashboard-for-wp' ), GADWP_CURRENT_VERSION).' '.sprintf( __('For details, check out %1$s
|
372 |
</div>
|
373 |
|
374 |
<?php
|
368 |
if ( get_option( 'gadwp_got_updated' ) ) :
|
369 |
?>
|
370 |
<div id="gadwp-notice" class="notice is-dismissible">
|
371 |
+
<p><?php echo sprintf( __('Google Analytics Dashboard for WP has been updated to version %s.', 'google-analytics-dashboard-for-wp' ), GADWP_CURRENT_VERSION).' '.sprintf( __('For details, check out %1$s.', 'google-analytics-dashboard-for-wp' ), sprintf(' <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_notice&utm_medium=link&utm_content=release_notice&utm_campaign=gadwp">%s</a>', __('the plugin documentation', 'google-analytics-dashboard-for-wp') ) ); ?></p>
|
372 |
</div>
|
373 |
|
374 |
<?php
|
gadwp.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://deconf.com
|
5 |
* Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
|
6 |
* Author: Alin Marcu
|
7 |
-
* Version: 5.2.3
|
8 |
* Author URI: https://deconf.com
|
9 |
* Text Domain: google-analytics-dashboard-for-wp
|
10 |
* Domain Path: /languages
|
@@ -16,7 +16,7 @@ if ( ! defined( 'ABSPATH' ) )
|
|
16 |
|
17 |
// Plugin Version
|
18 |
if ( ! defined( 'GADWP_CURRENT_VERSION' ) ) {
|
19 |
-
define( 'GADWP_CURRENT_VERSION', '5.2.3' );
|
20 |
}
|
21 |
|
22 |
if ( ! defined( 'GADWP_ENDPOINT_URL' ) ) {
|
4 |
* Plugin URI: https://deconf.com
|
5 |
* Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
|
6 |
* Author: Alin Marcu
|
7 |
+
* Version: 5.2.3.1
|
8 |
* Author URI: https://deconf.com
|
9 |
* Text Domain: google-analytics-dashboard-for-wp
|
10 |
* Domain Path: /languages
|
16 |
|
17 |
// Plugin Version
|
18 |
if ( ! defined( 'GADWP_CURRENT_VERSION' ) ) {
|
19 |
+
define( 'GADWP_CURRENT_VERSION', '5.2.3.1' );
|
20 |
}
|
21 |
|
22 |
if ( ! defined( 'GADWP_ENDPOINT_URL' ) ) {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://deconf.com/donate/
|
|
4 |
Tags: analytics,google analytics,google analytics dashboard,google analytics plugin,google analytics widget
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.9.4
|
7 |
-
Stable tag: 5.2.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -165,6 +165,10 @@ Google Analytics Dashboard for WP it's released under the GPLv2, you can use it
|
|
165 |
|
166 |
== Changelog ==
|
167 |
|
|
|
|
|
|
|
|
|
168 |
= 5.2.3 =
|
169 |
* Enhancements:
|
170 |
* add Google Analytics user opt-out support
|
4 |
Tags: analytics,google analytics,google analytics dashboard,google analytics plugin,google analytics widget
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.9.4
|
7 |
+
Stable tag: 5.2.3.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
165 |
|
166 |
== Changelog ==
|
167 |
|
168 |
+
= 5.2.3.1 =
|
169 |
+
* Bug Fixes:
|
170 |
+
* fixing a small reporting issue
|
171 |
+
|
172 |
= 5.2.3 =
|
173 |
* Enhancements:
|
174 |
* add Google Analytics user opt-out support
|