Changes between Initial Version and Version 1 of Ticket #36281
- Timestamp:
- 03/21/2016 02:13:28 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36281
-
Property
Milestone
changed from
Awaiting Review
toWordPress.org
-
Property
Milestone
changed from
-
Ticket #36281 – Description
initial v1 1 The Word press importer plugin fails to import menu items at all with PHP 7 (any WP version). It's a pretty quick fix, though.1 The WordPress Importer plugin fails to import menu items at all with PHP 7 (any WP version). It's a pretty quick fix, though. 2 2 3 3 I noticed this as part of writing a fix for the importer on wp-cli: … … 12 12 wordpress-importer.php on line 798 13 13 Change: 14 {{{ 14 15 $$meta['key'] = $meta['value']; 16 }}} 15 17 To: 18 {{{ 16 19 ${$meta['key']} = $meta['value']; 20 }}}