Google Pagespeed Insights - Version 3.0.3

Version Description

  • Fixed bug where Maximum Script Run Time option could not be set to "No Limit" after previously being set to a higher value
Download this release

Release Info

Developer mattkeys
Plugin Icon 128x128 Google Pagespeed Insights
Version 3.0.3
Comparing to
See all releases

Code changes from version 3.0.2 to 3.0.3

classes/class-GPI-Actions.php CHANGED
@@ -185,7 +185,7 @@ class GPI_Actions
185
  'response_language' => ! empty( $_POST['response_language'] ) ? sanitize_text_field( $_POST['response_language'] ) : $this->gpi_options['response_language'],
186
  'strategy' => ! empty( $_POST['strategy'] ) ? sanitize_text_field( $_POST['strategy'] ) : $this->gpi_options['strategy'],
187
  'max_execution_time' => ! empty( $_POST['max_execution_time'] ) ? intval( $_POST['max_execution_time'] ) : $this->gpi_options['max_execution_time'],
188
- 'max_run_time' => ! empty( $_POST['max_run_time'] ) ? intval( $_POST['max_run_time'] ) : $this->gpi_options['max_run_time'],
189
  'sleep_time' => isset( $_POST['sleep_time'] ) ? intval( $_POST['sleep_time'] ) : $this->gpi_options['sleep_time'],
190
  'recheck_interval' => ! empty( $_POST['recheck_interval'] ) ? intval( $_POST['recheck_interval'] ) : $this->gpi_options['recheck_interval'],
191
  'use_schedule' => isset( $_POST['use_schedule'] ) ? true : false,
185
  'response_language' => ! empty( $_POST['response_language'] ) ? sanitize_text_field( $_POST['response_language'] ) : $this->gpi_options['response_language'],
186
  'strategy' => ! empty( $_POST['strategy'] ) ? sanitize_text_field( $_POST['strategy'] ) : $this->gpi_options['strategy'],
187
  'max_execution_time' => ! empty( $_POST['max_execution_time'] ) ? intval( $_POST['max_execution_time'] ) : $this->gpi_options['max_execution_time'],
188
+ 'max_run_time' => isset( $_POST['max_run_time'] ) ? intval( $_POST['max_run_time'] ) : $this->gpi_options['max_run_time'],
189
  'sleep_time' => isset( $_POST['sleep_time'] ) ? intval( $_POST['sleep_time'] ) : $this->gpi_options['sleep_time'],
190
  'recheck_interval' => ! empty( $_POST['recheck_interval'] ) ? intval( $_POST['recheck_interval'] ) : $this->gpi_options['recheck_interval'],
191
  'use_schedule' => isset( $_POST['use_schedule'] ) ? true : false,
google-pagespeed-insights.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Pagespeed Insights
4
  Plugin URI: http://mattkeys.me
5
  Description: Google Pagespeed Insights
6
  Author: Matt Keys
7
- Version: 3.0.2
8
  Author URI: http://mattkeys.me
9
  */
10
 
4
  Plugin URI: http://mattkeys.me
5
  Description: Google Pagespeed Insights
6
  Author: Matt Keys
7
+ Version: 3.0.3
8
  Author URI: http://mattkeys.me
9
  */
10
 
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: mattkeys
3
  Tags: SEO, performance, speed, page speed, search engine optimization, pagespeed, google page speed, pagespeed insights, google pagespeed insights
4
  Requires at least: 3.6
5
- Tested up to: 4.8
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -136,6 +136,9 @@ Google Pagespeed Insights requires a Google API Key. Keys are free and can be ob
136
 
137
  == Changelog ==
138
 
 
 
 
139
  = 3.0.2 =
140
  * Fixed bug introduced in v3.0.1 effecting servers running PHP 5.4 where a PHP error is produced while trying to perform actions in the plugin like saving options
141
 
@@ -201,6 +204,9 @@ Google Pagespeed Insights requires a Google API Key. Keys are free and can be ob
201
 
202
  == Upgrade Notice ==
203
 
 
 
 
204
  = 3.0.2 =
205
  * Fixed bug introduced in v3.0.1 effecting servers running PHP 5.4 where a PHP error is produced while trying to perform actions in the plugin like saving options
206
 
2
  Contributors: mattkeys
3
  Tags: SEO, performance, speed, page speed, search engine optimization, pagespeed, google page speed, pagespeed insights, google pagespeed insights
4
  Requires at least: 3.6
5
+ Tested up to: 4.9
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
136
 
137
  == Changelog ==
138
 
139
+ = 3.0.3 =
140
+ * Fixed bug where Maximum Script Run Time option could not be set to "No Limit" after previously being set to a higher value
141
+
142
  = 3.0.2 =
143
  * Fixed bug introduced in v3.0.1 effecting servers running PHP 5.4 where a PHP error is produced while trying to perform actions in the plugin like saving options
144
 
204
 
205
  == Upgrade Notice ==
206
 
207
+ = 3.0.3 =
208
+ * Fixed bug where Maximum Script Run Time option could not be set to "No Limit" after previously being set to a higher value
209
+
210
  = 3.0.2 =
211
  * Fixed bug introduced in v3.0.1 effecting servers running PHP 5.4 where a PHP error is produced while trying to perform actions in the plugin like saving options
212
 
templates/options.php CHANGED
@@ -218,7 +218,7 @@ if ( ! defined( 'ABSPATH' ) ) {
218
  <p class="description">
219
  <?php _e( 'The default value of "Fast" is fine for most sites.', 'gpagespeedi' ); ?>
220
  <br />
221
- <?php _e( 'More frequent updates may impact Pagespeed reports on poorly performing servers, reduce to rate if you are experiencing issues.', 'gpagespeedi' ); ?>
222
  </p>
223
 
224
  <p class="checkbx">
218
  <p class="description">
219
  <?php _e( 'The default value of "Fast" is fine for most sites.', 'gpagespeedi' ); ?>
220
  <br />
221
+ <?php _e( 'More frequent updates may impact Pagespeed reports on poorly performing servers, reduce the rate if you are experiencing issues.', 'gpagespeedi' ); ?>
222
  </p>
223
 
224
  <p class="checkbx">