Plugin Directory

Changeset 917261


Ignore:
Timestamp:
05/19/2014 04:03:59 PM (12 years ago)
Author:
faishal
Message:

version 1.8.1 released

Location:
nginx-helper/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • nginx-helper/trunk/nginx-helper.php

    r831565 r917261  
    44  Plugin URI: http://rtcamp.com/nginx-helper/
    55  Description: An nginx helper that serves various functions.
    6   Version: 1.8
     6  Version: 1.8.1
    77  Author: rtCamp
    88  Author URI: http://rtcamp.com
    99  Text Domain: nginx-helper
    1010  Requires at least: 3.0
    11   Tested up to: 3.8
     11  Tested up to: 3.9.1
    1212 */
    1313
     
    3030            // Load Plugin Text Domain
    3131            add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
    32            
     32
    3333            $this->load_options();
    3434            $this->plugin_name = plugin_basename(__FILE__);
     
    153153            $rt_wp_nginx_purger->log("New site added to nginx map (id $blog_id)");
    154154            $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);
    156156            $rt_wp_nginx_purger->log("Default options updated for the new blog (id $blog_id)");
    157157        }
     
    280280            wp_redirect(add_query_arg(array('nginx_helper_action' => 'done')));
    281281        }
    282        
     282
    283283        /**
    284284         * Load the translation file for current language.
     
    343343    }
    344344
    345     $plugin = plugin_basename(__FILE__);
    346345    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');
    348347    } else {
    349         add_filter("plugin_action_links_$plugin", 'nginx_settings_link');
     348        add_filter("plugin_action_links_" . plugin_basename(__FILE__), 'nginx_settings_link');
    350349    }
    351350
  • nginx-helper/trunk/readme.txt

    r831565 r917261  
    11=== Nginx ===
    2 Contributors: rtcamp, rahul286, saurabhshukla, faishal, Darren Slatten, jk3us, daankortenbach, telofy, pjv, llonchj, manishsongirkar36,jinnko
     2Contributors: rtcamp, rahul286, saurabhshukla, faishal, Darren Slatten, jk3us, daankortenbach, telofy, pjv, llonchj, manishsongirkar36,jinnko,weskoop
    33Tags: nginx, cache, purge, nginx map, nginx cache, maps, fastcgi, proxy, rewrite, permalinks
    44Requires at least: 3.0
    5 Tested up to: 3.8
    6 Stable tag: 1.8
     5Tested up to: 3.9.1
     6Stable tag: 1.8.1
    77License: GPLv2 or later (of-course)
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    117117== Changelog ==
    118118
     119= 1.8.1 =
     120* Tested with wordpress 3.9.1
     121* Fix confilct with Mailchimp's Social plugin
     122
    119123= 1.8 =
    120124* New admin UI
Note: See TracChangeset for help on using the changeset viewer.