Plugin Directory

Changeset 383808


Ignore:
Timestamp:
05/11/2011 08:15:11 PM (15 years ago)
Author:
ruslany
Message:

Fixing a typo bug when calling wincache_ucache_cache instead of wincache_ucache_clear.

Location:
wincache-object-cache-backend
Files:
1 added
2 edited
2 copied

Legend:

Unmodified
Added
Removed
  • wincache-object-cache-backend/tags/1.1/object-cache.php

    r382614 r383808  
    165165
    166166    function flush() {
    167         return wincache_ucache_cache( 'user' );
     167        return wincache_ucache_clear();
    168168    }
    169169
  • wincache-object-cache-backend/tags/1.1/readme.txt

    r382614 r383808  
    55Requires at least: 2.9.2
    66Tested up to: 3.1.2
    7 Stable tag: 1.0
     7Stable tag: 1.1
    88
    99WinCache Object Cache provides a persistent memory-based backend for the WordPress object cache. WinCache must be available on your PHP install.
     
    4242== Changelog ==
    4343
     44= 1.1 =
     45* Fixed a typo bug when calling Flush() function
     46
    4447= 1.0 =
    4548* First version in SVN based on markjaquith's APC Object Cache plugin.
  • wincache-object-cache-backend/trunk/object-cache.php

    r382614 r383808  
    165165
    166166    function flush() {
    167         return wincache_ucache_cache( 'user' );
     167        return wincache_ucache_clear();
    168168    }
    169169
  • wincache-object-cache-backend/trunk/readme.txt

    r382614 r383808  
    55Requires at least: 2.9.2
    66Tested up to: 3.1.2
    7 Stable tag: 1.0
     7Stable tag: 1.1
    88
    99WinCache Object Cache provides a persistent memory-based backend for the WordPress object cache. WinCache must be available on your PHP install.
     
    4242== Changelog ==
    4343
     44= 1.1 =
     45* Fixed a typo bug when calling Flush() function
     46
    4447= 1.0 =
    4548* First version in SVN based on markjaquith's APC Object Cache plugin.
Note: See TracChangeset for help on using the changeset viewer.