Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #31982, comment 34


Ignore:
Timestamp:
07/26/2015 10:04:41 AM (10 years ago)
Author:
ocean90
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31982, comment 34

    initial v1  
    11Do we know the cause for the remaining failures related to nav menus?
    22https://travis-ci.org/aaronjorbin/develop.wordpress/jobs/72667233#L353-L414 is related to this line [source:/trunk/src/wp-includes/nav-menu.php@33256#L641]. Is it https://wiki.php.net/rfc/uniform_variable_syntax?
     3
     4Edit:
     5The answer is yes, see the second example from the RFC.
     6
     7{{{
     8                        // old meaning            // new meaning
     9$foo->$bar['baz']       $foo->{$bar['baz']}       ($foo->$bar)['baz']
     10}}}