Version Description
- Disable purge and stamp by defualt.
Download this release
Release Info
Developer | rtcamp |
Plugin | Nginx Helper |
Version | 1.7.4 |
Comparing to | |
See all releases |
Code changes from version 1.7.3 to 1.7.4
- admin/install.php +2 -2
- nginx-helper.php +1 -1
- readme.txt +7 -4
admin/install.php
CHANGED
@@ -81,10 +81,10 @@ namespace rtCamp\WP\Nginx {
|
|
81 |
$rt_wp_nginx_helper_get_options[ 'log_level' ] = 'INFO';
|
82 |
$rt_wp_nginx_helper_get_options[ 'log_filesize' ] = 5;
|
83 |
|
84 |
-
$rt_wp_nginx_helper_get_options[ 'enable_purge' ] =
|
85 |
$rt_wp_nginx_helper_get_options[ 'enable_map' ] = 0;
|
86 |
$rt_wp_nginx_helper_get_options[ 'enable_log' ] = 0;
|
87 |
-
$rt_wp_nginx_helper_get_options[ 'enable_stamp' ] =
|
88 |
|
89 |
$rt_wp_nginx_helper_get_options[ 'purge_homepage_on_new' ] = 1;
|
90 |
$rt_wp_nginx_helper_get_options[ 'purge_homepage_on_edit' ] = 1;
|
81 |
$rt_wp_nginx_helper_get_options[ 'log_level' ] = 'INFO';
|
82 |
$rt_wp_nginx_helper_get_options[ 'log_filesize' ] = 5;
|
83 |
|
84 |
+
$rt_wp_nginx_helper_get_options[ 'enable_purge' ] = 0;
|
85 |
$rt_wp_nginx_helper_get_options[ 'enable_map' ] = 0;
|
86 |
$rt_wp_nginx_helper_get_options[ 'enable_log' ] = 0;
|
87 |
+
$rt_wp_nginx_helper_get_options[ 'enable_stamp' ] = 0;
|
88 |
|
89 |
$rt_wp_nginx_helper_get_options[ 'purge_homepage_on_new' ] = 1;
|
90 |
$rt_wp_nginx_helper_get_options[ 'purge_homepage_on_edit' ] = 1;
|
nginx-helper.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Nginx Helper
|
4 |
Plugin URI: http://rtcamp.com/nginx-helper/
|
5 |
Description: An nginx helper that serves various functions.
|
6 |
-
Version: 1.7.
|
7 |
Author: rtCamp
|
8 |
Author URI: http://rtcamp.com
|
9 |
Requires at least: 3.0
|
3 |
Plugin Name: Nginx Helper
|
4 |
Plugin URI: http://rtcamp.com/nginx-helper/
|
5 |
Description: An nginx helper that serves various functions.
|
6 |
+
Version: 1.7.4
|
7 |
Author: rtCamp
|
8 |
Author URI: http://rtcamp.com
|
9 |
Requires at least: 3.0
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Nginx ===
|
2 |
-
Contributors: rtcamp, rahul286, saurabhshukla, Darren Slatten, jk3us, daankortenbach, telofy, pjv
|
3 |
Tags: nginx, cache, purge, nginx map, nginx cache, maps, fastcgi, proxy, rewrite, permalinks
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.6
|
6 |
-
Stable tag: 1.7.
|
7 |
License: GPLv2 or later (of-course)
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
Donate Link: http://rtcamp.com/donate/
|
@@ -116,6 +116,9 @@ Its just that we are hyperactive on our own forum!
|
|
116 |
|
117 |
== Changelog ==
|
118 |
|
|
|
|
|
|
|
119 |
= 1.7.3 =
|
120 |
* Suppressed `unlink` related error-messages which can be safely ignored.
|
121 |
* Fixed a bug in purge-all option.
|
@@ -243,5 +246,5 @@ Its just that we are hyperactive on our own forum!
|
|
243 |
|
244 |
== Upgrade Notice ==
|
245 |
|
246 |
-
= 1.7.
|
247 |
-
|
1 |
=== Nginx ===
|
2 |
+
Contributors: rtcamp, rahul286, saurabhshukla, faishal, Darren Slatten, jk3us, daankortenbach, telofy, pjv
|
3 |
Tags: nginx, cache, purge, nginx map, nginx cache, maps, fastcgi, proxy, rewrite, permalinks
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.6
|
6 |
+
Stable tag: 1.7.4
|
7 |
License: GPLv2 or later (of-course)
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
Donate Link: http://rtcamp.com/donate/
|
116 |
|
117 |
== Changelog ==
|
118 |
|
119 |
+
= 1.7.4 =
|
120 |
+
* Disable purge and stamp by defualt.
|
121 |
+
|
122 |
= 1.7.3 =
|
123 |
* Suppressed `unlink` related error-messages which can be safely ignored.
|
124 |
* Fixed a bug in purge-all option.
|
246 |
|
247 |
== Upgrade Notice ==
|
248 |
|
249 |
+
= 1.7.4 =
|
250 |
+
Disable purge and html stamp by defualt.
|