Version Description
= 2.0.10.9 = Important security update. Please upgrade immediately.
= 2.0 = New GPL plugin, now updates are through the wordpress.org repository
Download this release
Release Info
Developer | a2hosting |
Plugin | A2 Optimized WP |
Version | 2.1.3.7 |
Comparing to | |
See all releases |
Code changes from version 2.1.3.6 to 2.1.3.7
- A2_Optimized_Plugin.php +2 -0
- a2-optimized.php +1 -1
- readme.txt +2 -2
A2_Optimized_Plugin.php
CHANGED
@@ -306,6 +306,8 @@ HTML;
|
|
306 |
add_action('wp_dashboard_setup', array(&$this, 'dashboard_widget'));
|
307 |
$a2_plugin_basename = plugin_basename($GLOBALS['A2_Plugin_Dir'] . '/a2-optimized.php');
|
308 |
add_filter("plugin_action_links_{$a2_plugin_basename}", array(&$this, 'plugin_settings_link'));
|
|
|
|
|
309 |
}
|
310 |
|
311 |
if (get_option('A2_Optimized_Plugin_recaptcha', 0) == 1 && !is_admin()) {
|
306 |
add_action('wp_dashboard_setup', array(&$this, 'dashboard_widget'));
|
307 |
$a2_plugin_basename = plugin_basename($GLOBALS['A2_Plugin_Dir'] . '/a2-optimized.php');
|
308 |
add_filter("plugin_action_links_{$a2_plugin_basename}", array(&$this, 'plugin_settings_link'));
|
309 |
+
register_setting( 'a2opt-cache', 'a2opt-cache', array( __CLASS__, 'validate_settings' ) );
|
310 |
+
register_setting( 'a2opt-cache', 'a2_optimized_memcached_server', array( __CLASS__, 'validate_memcached' ));
|
311 |
}
|
312 |
|
313 |
if (get_option('A2_Optimized_Plugin_recaptcha', 0) == 1 && !is_admin()) {
|
a2-optimized.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: A2 Optimized WP
|
4 |
Plugin URI: https://wordpress.org/plugins/a2-optimized/
|
5 |
-
Version: 2.1.3.
|
6 |
Author: A2 Hosting
|
7 |
Author URI: https://www.a2hosting.com/
|
8 |
Description: A2 Optimized - WordPress Optimization Plugin
|
2 |
/*
|
3 |
Plugin Name: A2 Optimized WP
|
4 |
Plugin URI: https://wordpress.org/plugins/a2-optimized/
|
5 |
+
Version: 2.1.3.7
|
6 |
Author: A2 Hosting
|
7 |
Author URI: https://www.a2hosting.com/
|
8 |
Description: A2 Optimized - WordPress Optimization Plugin
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: A2BCool, a2hosting, dmatteson, sputala
|
3 |
Tags: Speed, Optimize, Secure, Fast, W3 Total Cache, W3TC, Hosting
|
4 |
Requires at least: 5.1
|
5 |
-
Tested up to: 5.8
|
6 |
-
Stable tag: 2.1.3.
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
2 |
Contributors: A2BCool, a2hosting, dmatteson, sputala
|
3 |
Tags: Speed, Optimize, Secure, Fast, W3 Total Cache, W3TC, Hosting
|
4 |
Requires at least: 5.1
|
5 |
+
Tested up to: 5.8.1
|
6 |
+
Stable tag: 2.1.3.7
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|