Changeset 60206
- Timestamp:
- 04/29/2025 10:42:19 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cache.php
r60130 r60206 63 63 global $wp_object_cache; 64 64 65 return $wp_object_cache->add_multiple( $data, $group, $expire );65 return $wp_object_cache->add_multiple( $data, $group, (int) $expire ); 66 66 } 67 67 … … 130 130 global $wp_object_cache; 131 131 132 return $wp_object_cache->set_multiple( $data, $group, $expire );132 return $wp_object_cache->set_multiple( $data, $group, (int) $expire ); 133 133 } 134 134
Note: See TracChangeset
for help on using the changeset viewer.