Changes between Initial Version and Version 1 of Ticket #31982, comment 34
- Timestamp:
- 07/26/2015 10:04:41 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31982, comment 34
initial v1 1 1 Do we know the cause for the remaining failures related to nav menus? 2 2 https://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 4 Edit: 5 The 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 }}}