Changeset 4044
- Timestamp:
- 09/13/2016 01:42:51 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-stickies-compat.php
r4043 r4044 265 265 */ 266 266 public static function set_stickies( $term_id, $stickies = array() ) { 267 return update_term_meta( $term_id, self::META, implode( ',', $stickies ) ); 267 $retval = update_term_meta( $term_id, self::META, implode( ',', $stickies ) ); 268 wp_cache_delete( $term_id, 'term_meta' ); 269 return $retval; 268 270 } 269 271 }
Note: See TracChangeset
for help on using the changeset viewer.