Changeset 917261
- Timestamp:
- 05/19/2014 04:03:59 PM (12 years ago)
- Location:
- nginx-helper/trunk
- Files:
-
- 2 edited
-
nginx-helper.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nginx-helper/trunk/nginx-helper.php
r831565 r917261 4 4 Plugin URI: http://rtcamp.com/nginx-helper/ 5 5 Description: An nginx helper that serves various functions. 6 Version: 1.8 6 Version: 1.8.1 7 7 Author: rtCamp 8 8 Author URI: http://rtcamp.com 9 9 Text Domain: nginx-helper 10 10 Requires at least: 3.0 11 Tested up to: 3. 811 Tested up to: 3.9.1 12 12 */ 13 13 … … 30 30 // Load Plugin Text Domain 31 31 add_action( 'init', array( $this, 'load_plugin_textdomain' ) ); 32 32 33 33 $this->load_options(); 34 34 $this->plugin_name = plugin_basename(__FILE__); … … 153 153 $rt_wp_nginx_purger->log("New site added to nginx map (id $blog_id)"); 154 154 $helper_options = rt_wp_nginx_helper_get_options(); 155 update_blog_option($blog_id, "rt_wp_nginx_helper_options", $helper_options , true);155 update_blog_option($blog_id, "rt_wp_nginx_helper_options", $helper_options); 156 156 $rt_wp_nginx_purger->log("Default options updated for the new blog (id $blog_id)"); 157 157 } … … 280 280 wp_redirect(add_query_arg(array('nginx_helper_action' => 'done'))); 281 281 } 282 282 283 283 /** 284 284 * Load the translation file for current language. … … 343 343 } 344 344 345 $plugin = plugin_basename(__FILE__);346 345 if (is_multisite()) { 347 add_filter("network_admin_plugin_action_links_ $plugin", 'nginx_settings_link');346 add_filter("network_admin_plugin_action_links_" . plugin_basename(__FILE__), 'nginx_settings_link'); 348 347 } else { 349 add_filter("plugin_action_links_ $plugin", 'nginx_settings_link');348 add_filter("plugin_action_links_" . plugin_basename(__FILE__), 'nginx_settings_link'); 350 349 } 351 350 -
nginx-helper/trunk/readme.txt
r831565 r917261 1 1 === Nginx === 2 Contributors: rtcamp, rahul286, saurabhshukla, faishal, Darren Slatten, jk3us, daankortenbach, telofy, pjv, llonchj, manishsongirkar36,jinnko 2 Contributors: rtcamp, rahul286, saurabhshukla, faishal, Darren Slatten, jk3us, daankortenbach, telofy, pjv, llonchj, manishsongirkar36,jinnko,weskoop 3 3 Tags: nginx, cache, purge, nginx map, nginx cache, maps, fastcgi, proxy, rewrite, permalinks 4 4 Requires at least: 3.0 5 Tested up to: 3. 86 Stable tag: 1.8 5 Tested up to: 3.9.1 6 Stable tag: 1.8.1 7 7 License: GPLv2 or later (of-course) 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 117 117 == Changelog == 118 118 119 = 1.8.1 = 120 * Tested with wordpress 3.9.1 121 * Fix confilct with Mailchimp's Social plugin 122 119 123 = 1.8 = 120 124 * New admin UI
Note: See TracChangeset
for help on using the changeset viewer.