Google Analytics Dashboard for WP (GADWP) - Version 4.9.0.1

Version Description

  • Bug Fix: Pages report missing from admin dashboard widget
  • Bug Fix: Invalid response with a -31 error when using a certain combination of backend settings
Download this release

Release Info

Developer deconf
Plugin Icon 128x128 Google Analytics Dashboard for WP (GADWP)
Version 4.9.0.1
Comparing to
See all releases

Code changes from version 4.9 to 4.9.0.1

Files changed (4) hide show
  1. admin/ajax-actions.php +1 -1
  2. admin/setup.php +1 -0
  3. gadwp.php +2 -2
  4. readme.txt +5 -1
admin/ajax-actions.php CHANGED
@@ -51,7 +51,7 @@ if ( ! class_exists( 'GADWP_Backend_Ajax' ) ) {
51
  ob_clean();
52
  }
53
 
54
- if ( ! GADWP_Tools::check_roles( $this->gadwp->config->options['ga_dash_access_back'] ) || 0 == $this->gadwp->config->options['backend_item_reports'] ) {
55
  wp_die( - 31 );
56
  }
57
  if ( $this->gadwp->config->options['ga_dash_token'] && $this->gadwp->config->options['ga_dash_tableid_jail'] && $from && $to ) {
51
  ob_clean();
52
  }
53
 
54
+ if ( ! ( GADWP_Tools::check_roles( $this->gadwp->config->options['ga_dash_access_back'] ) && ( ( 1 == $this->gadwp->config->options['backend_item_reports'] ) || ( 1 == $this->gadwp->config->options['dashboard_widget'] ) ) ) ) {
55
  wp_die( - 31 );
56
  }
57
  if ( $this->gadwp->config->options['ga_dash_token'] && $this->gadwp->config->options['ga_dash_tableid_jail'] && $from && $to ) {
admin/setup.php CHANGED
@@ -171,6 +171,7 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
171
  'pageviews' => __( "Page Views", 'google-analytics-dashboard-for-wp' ),
172
  'visitBounceRate' => __( "Bounce Rate", 'google-analytics-dashboard-for-wp' ),
173
  'locations' => __( "Location", 'google-analytics-dashboard-for-wp' ),
 
174
  'referrers' => __( "Referrers", 'google-analytics-dashboard-for-wp' ),
175
  'searches' => __( "Searches", 'google-analytics-dashboard-for-wp' ),
176
  'trafficdetails' => __( "Traffic Details", 'google-analytics-dashboard-for-wp' )
171
  'pageviews' => __( "Page Views", 'google-analytics-dashboard-for-wp' ),
172
  'visitBounceRate' => __( "Bounce Rate", 'google-analytics-dashboard-for-wp' ),
173
  'locations' => __( "Location", 'google-analytics-dashboard-for-wp' ),
174
+ 'contentpages' => __( "Pages", 'google-analytics-dashboard-for-wp' ),
175
  'referrers' => __( "Referrers", 'google-analytics-dashboard-for-wp' ),
176
  'searches' => __( "Searches", 'google-analytics-dashboard-for-wp' ),
177
  'trafficdetails' => __( "Traffic Details", 'google-analytics-dashboard-for-wp' )
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: 4.9
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', '4.9' );
20
  }
21
 
22
  if ( ! class_exists( 'GADWP_Manager' ) ) {
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: 4.9.0.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', '4.9.0.1' );
20
  }
21
 
22
  if ( ! class_exists( 'GADWP_Manager' ) ) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://deconf.com/donate/
4
  Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics plugin,google analytics widget,tracking,universal google analytics,realtime,multisite,gadwp
5
  Requires at least: 3.5
6
  Tested up to: 4.4
7
- Stable tag: 4.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -132,6 +132,10 @@ Google Analytics Dashboard for WP it's released under the GPLv2, you can use it
132
 
133
  == Changelog ==
134
 
 
 
 
 
135
  = 4.9 =
136
  - Bug Fix: add an unique class to jQuery UI Tooltips to avoid conflicts
137
  - Bug Fix: multiple CSS improvements
4
  Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics plugin,google analytics widget,tracking,universal google analytics,realtime,multisite,gadwp
5
  Requires at least: 3.5
6
  Tested up to: 4.4
7
+ Stable tag: 4.9.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
132
 
133
  == Changelog ==
134
 
135
+ = 4.9.0.1 =
136
+ - Bug Fix: Pages report missing from admin dashboard widget
137
+ - Bug Fix: Invalid response with a -31 error when using a certain combination of backend settings
138
+
139
  = 4.9 =
140
  - Bug Fix: add an unique class to jQuery UI Tooltips to avoid conflicts
141
  - Bug Fix: multiple CSS improvements