diff --git wp-includes/ms-files.php wp-includes/ms-files.php
index 87fa70f..42882d2 100644
|
|
if ( ( $client_last_modified && $client_etag ) |
78 | 78 | exit; |
79 | 79 | } |
80 | 80 | |
| 81 | /** |
| 82 | * Fires just before the file is output using readfile(). |
| 83 | * |
| 84 | * @since 4.6.0 |
| 85 | */ |
| 86 | do_action( 'ms_files_before_readfile', $file ); |
| 87 | |
81 | 88 | // If we made it this far, just serve the file |
82 | 89 | readfile( $file ); |
| 90 | |
| 91 | /** |
| 92 | * Fires just after the file is output using readfile(). |
| 93 | * |
| 94 | * @since 4.6.0 |
| 95 | */ |
| 96 | do_action( 'ms_files_after_readfile', $file ); |