Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #36281


Ignore:
Timestamp:
03/21/2016 02:13:28 PM (9 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36281

    • Property Milestone changed from Awaiting Review to WordPress.org
  • Ticket #36281 – Description

    initial v1  
    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.
     1The WordPress Importer plugin fails to import menu items at all with PHP 7 (any WP version). It's a pretty quick fix, though.
    22
    33I noticed this as part of writing a fix for the importer on wp-cli:
     
    1212wordpress-importer.php on line 798
    1313Change:
     14{{{
    1415$$meta['key'] = $meta['value'];
     16}}}
    1517To:
     18{{{
    1619${$meta['key']} = $meta['value'];
     20}}}