Opened 4 months ago
Last modified 11 days ago
#51383 reviewing defect (bug)
PHP error body class added for suppressed errors
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 5.7 | Priority: | normal |
Severity: | normal | Version: | 5.5 |
Component: | Administration | Keywords: | has-patch |
Focuses: | Cc: |
Description
When a PHP error occurs in the admin that is suppressed using the @
operator, the .php-error
class is still added to the <body>
even though the error will not be output.
To reproduce, use error suppression on code that invokes an E_WARNING
level error. I discovered this with code calling the mkdir()
method within the WP_Filesystem_Direct
class for a pre-existing directory.
@mkdir( ABSPATH . 'wp-content/themes/' );
should reproduce the issue after ensuring nothing else is actively capturing and processing PHP errors (such as Query Monitor).
Attachments (2)
Change History (14)
#2
@
4 months ago
- Keywords has-patch added; needs-patch removed
Hello there, I have added the E_WARNING to the condition, and when the error is silenced, the empty space is not present however, if the error is not silenced part of the message appears under the menu. I will tweak it a bit more, but if anyone has another idea, I am open to suggestions. I have tried using,
! in_array( $error_get_last['type'], array( E_NOTICE, E_WARNING )
, but the second condition causes the empty space to be present if the error is silenced elsewhere.
This ticket was mentioned in Slack in #core by audrasjb. View the logs.
3 months ago
#5
@
3 months ago
During today’s bug scrub, @SergeyBiryukov shared some concerns about the proposed approach. By the way, I tested the patch and it looks like it fixes the issue.
#6
@
3 months ago
It seems patch not consider last space in the code
&& ( E_NOTICE !== $error_get_last['type'] || 'wp-config.php' !== wp_basename( $error_get_last['file'] ) )
This ticket was mentioned in Slack in #core by desrosj. View the logs.
3 months ago
#8
@
3 months ago
- Keywords commit added
@SergeyBiryukov, any other thoughts on this one? Looks good to me.
#9
@
3 months ago
- Milestone changed from 5.5.2 to 5.6
Would like some more time to review this, moving to 5.6 for now.
Placing this in the 5.5.2 milestone as this would be a good to fix to backport.
Also, I forgot to include why this is undesirable. The
.php-error
class ensures PHP errors are not hidden behind the admin bar. But since the error is suppressed, it just results in a blank space at the top of the page.