Changes between Initial Version and Version 1 of Ticket #60003
- Timestamp:
- 12/02/2023 09:55:46 PM (16 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #60003
- Property Keywords reporter-feedback added
-
Property
Summary
changed from
php error
toPHP error in wp_match_mime_types()
-
Ticket #60003 – Description
initial v1 1 1 PHP ERROR: 2 2 3 Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /home1/njscuban/public_html/luthierylabs/wp-includes/post.php on line 3308 3 `Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /.../wp-includes/post.php on line 3308` 4 4 5 5 FIX: … … 7 7 change LINE 3308 to: 8 8 9 {{{ 9 10 if ( $real && preg_match( "#$pattern#", $real ) 10 11 ^^^^^^^^^ 12 }}}