Changes between Initial Version and Version 1 of Ticket #50159, comment 23
- Timestamp:
- 05/14/2020 02:43:45 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #50159, comment 23
initial v1 30 30 SimplePie is capable of using several different methods of creating the hash used in the transient. The default SimplePie `cache_name_function = 'md5'`. Your patch will have the effect of 31 31 {{{ 32 md5( md5( $filename) );32 $transient = md5( 'file_' . md5( $filename:$extension ) ); 33 33 }}} 34 34