Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.1
-
Fix Version/s: 3.0.1
-
Component/s: Database activity module, External Tool (IMS-LTI), Messages, User management
-
Testing Instructions:
-
Affected Branches:MOODLE_31_STABLE
-
Fixed Branches:MOODLE_30_STABLE
-
Epic Link:
-
Pull from Repository:
-
Pull Master Branch:
MDL-52335-master -
Pull Master Diff URL:
Description
https://github.com/tpunt/PHP7-Reference#uniform-variable-syntax
Examples:
// old meaning // new meaning
|
$$foo['bar']['baz'] ${$foo['bar']['baz']} ($$foo)['bar']['baz']
|
$foo->$bar['baz'] $foo->{$bar['baz']} ($foo->$bar)['baz']
|
$foo->$bar['baz']() $foo->{$bar['baz']}() ($foo->$bar)['baz']()
|
Foo::$bar['baz']() Foo::{$bar['baz']}() (Foo::$bar)['baz']()
|
Attachments
Issue Links
- has a non-specific relationship to
-
MDL-52336 Upgrade (or patch) PHPExcel for php7 compatibility changes
-
- Closed
-
-
MDL-52361 Upgrade (or patch) Horde library
-
- Closed
-
- has been marked as being related by
-
MDL-52359 Replace XMPP library in Moodle to something supported and move from core to message/output/jabber
-
- Open
-