Opened 6 years ago
Closed 4 years ago
#5109 closed defect (bug) (fixed)
Patch (wp-includes/functions.php): eliminate triggered error from wp_ob_end_flush_all()
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 2.8 |
| Component: | Optimization | Version: | 2.7 |
| Severity: | normal | Keywords: | has-patch tested |
| Cc: |
Description
The line from wp_ob_end_flush_all():
1416 while ( @ob_end_flush() );
triggers a notice-level error when there aren't any more buffers to flush, which is then logged when error logging is enabled. The included patch rewrites the function to avoid this.
Attachments (2)
Change History (6)
comment:1
darkdragon — 5 years ago
- Keywords needs-testing added
Patch should be used, but most likely would need testing.
- Component changed from General to Optimization
- Keywords tested added; needs-testing removed
Note: See
TracTickets for help on using
tickets.

Patch