Changeset 40803 for trunk/src/wp-admin/includes/dashboard.php
- Timestamp:
- 05/19/2017 07:13:59 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/dashboard.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r40802 r40803 982 982 983 983 $locale = get_user_locale(); 984 $cache_key = 'dash_ ' . md5( $widget_id . '_' . $locale );984 $cache_key = 'dash_v2_' . md5( $widget_id . '_' . $locale ); 985 985 if ( false !== ( $output = get_transient( $cache_key ) ) ) { 986 986 echo $output; … … 1064 1064 update_option( 'dashboard_widget_options', $widget_options ); 1065 1065 $locale = get_user_locale(); 1066 $cache_key = 'dash_ ' . md5( $widget_id . '_' . $locale );1066 $cache_key = 'dash_v2_' . md5( $widget_id . '_' . $locale ); 1067 1067 delete_transient( $cache_key ); 1068 1068 }
Note: See TracChangeset
for help on using the changeset viewer.