Plugin Directory

Changeset 2096180


Ignore:
Timestamp:
05/28/2019 02:33:52 AM (7 years ago)
Author:
flynsarmy
Message:

Network - Settings - Mabs - Clear Cache button now clears cache for everyone

Location:
multisite-admin-bar-switcher/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • multisite-admin-bar-switcher/trunk/multisite-admin-bar-switcher.php

    r2061216 r2096180  
    163163        return;
    164164
    165     mabs_clear_user_cache(wp_get_current_user()->ID);
     165    global $wpdb;
     166
     167    $wpdb->query("
     168        DELETE FROM ".$wpdb->base_prefix."sitemeta
     169        WHERE meta_key LIKE '_site_transient_mabs_%';
     170    ");
    166171}
    167172function mabs_clear_user_cache($user_id)
  • multisite-admin-bar-switcher/trunk/readme.txt

    r2061216 r2096180  
    33Tags: multisite, toolbar, switcher, switch, network, admin, wpmu
    44Requires at least: 3.2.1
    5 Tested up to: 5.1.1
    6 Stable tag: 1.3.1
     5Tested up to: 5.2.1
     6Stable tag: 1.3.2
    77
    88== Description ==
     
    7878
    7979== Changelog ==
     80
     81= 1.3.2 =
     82* Network - Settings - Mabs - Clear Cache button now clears cache for everyone
    8083
    8184= 1.3.1 =
Note: See TracChangeset for help on using the changeset viewer.