Opened 8 years ago
Closed 8 years ago
#36307 closed defect (bug) (duplicate)
WP 4.4.2 + PHP 7.x (rss.php)
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
./wp-includes/rss.php (change row 117)
php5: list($ns, $el) = split( ':', $element, 2);
php7: list($ns, $el) = preg_split( ':', $element, 2);
Attachments (1)
Change History (4)
#1
in reply to:
↑ description
@
8 years ago
This ticket was mentioned in Slack in #core by achbed. View the logs.
8 years ago
Note: See
TracTickets for help on using
tickets.
Replying to frymi:
See also:
./wp-includes/atomlib.php line 316
Since this split does not need regex, I recommend using explode() instead. Patch attached.