Plugin Directory

Changeset 1393154


Ignore:
Timestamp:
04/12/2016 05:11:09 PM (10 years ago)
Author:
andy
Message:

memcached 2.0.5 to fix switch_to_blog (in [626248])

Location:
memcached
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • memcached/tags/2.0.5/object-cache.php

    r1388204 r1393154  
    44Plugin Name: Memcached
    55Description: Memcached backend for the WP Object Cache.
    6 Version: 2.0.4
     6Version: 2.0.5
    77Plugin URI: http://wordpress.org/extend/plugins/memcached/
    88Author: Ryan Boren, Denis de Bernardy, Matt Martz
     
    313313
    314314    function switch_to_blog( $blog_id ) {
     315        global $table_prefix;
    315316        $blog_id = (int) $blog_id;
    316317        $this->blog_prefix = ( is_multisite() ? $blog_id : $table_prefix ) . ':';
  • memcached/tags/2.0.5/readme.txt

    r1388204 r1393154  
    11=== Memcached Object Cache ===
    2 Contributors: ryan, sivel
     2Contributors: ryan, sivel, andy
    33Tags: cache, memcached
    44Requires at least: 3.0
    55Tested up to: 4.5
    6 Stable tag: 2.0.4
     6Stable tag: 2.0.5
    77
    88Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache.
     
    7575== Changelog ==
    7676
     77= 2.0.5 =
     78* Fix missing global in switch_to_blog
     79
     80= 2.0.4 =
     81* Remove deprecated constructor
     82
    7783= 2.0.3 =
    7884* Support for unix sockets
  • memcached/trunk/object-cache.php

    r1388204 r1393154  
    44Plugin Name: Memcached
    55Description: Memcached backend for the WP Object Cache.
    6 Version: 2.0.4
     6Version: 2.0.5
    77Plugin URI: http://wordpress.org/extend/plugins/memcached/
    88Author: Ryan Boren, Denis de Bernardy, Matt Martz
     
    313313
    314314    function switch_to_blog( $blog_id ) {
     315        global $table_prefix;
    315316        $blog_id = (int) $blog_id;
    316317        $this->blog_prefix = ( is_multisite() ? $blog_id : $table_prefix ) . ':';
  • memcached/trunk/readme.txt

    r1388204 r1393154  
    11=== Memcached Object Cache ===
    2 Contributors: ryan, sivel
     2Contributors: ryan, sivel, andy
    33Tags: cache, memcached
    44Requires at least: 3.0
    55Tested up to: 4.5
    6 Stable tag: 2.0.4
     6Stable tag: 2.0.5
    77
    88Use memcached and the PECL memcache extension to provide a backing store for the WordPress object cache.
     
    7575== Changelog ==
    7676
     77= 2.0.5 =
     78* Fix missing global in switch_to_blog
     79
     80= 2.0.4 =
     81* Remove deprecated constructor
     82
    7783= 2.0.3 =
    7884* Support for unix sockets
Note: See TracChangeset for help on using the changeset viewer.