Reviewed: https://reviews.mahara.org/6481 Committed: https://git.mahara.org/mahara/mahara/commit/6f67a0af3f98fa3cfe3cea6f474712c2d475cd79 Submitter: Son Nguyen ([email protected]) Branch: 15.10_STABLE
commit 6f67a0af3f98fa3cfe3cea6f474712c2d475cd79 Author: Piers Harding <[email protected]> Date: Mon May 2 12:53:08 2016 +1200 Bug 1577259: fix dynamic property references in dwoo for php7 behatnotneeded Change-Id: Iac965f8ce3999be6ae839a10cf5da7b2fd3b0487 Signed-off-by: Robert Lyon <[email protected]> (cherry picked from commit 92b6e408b9b2aee482c174270823eae34c477a98) -- You received this bug notification because you are a member of Mahara Contributors, which is subscribed to Mahara. Matching subscriptions: Subscription for all Mahara Contributors -- please ask on #mahara-dev or mahara.org forum before editing or unsubscribing it! https://bugs.launchpad.net/bugs/1577259 Title: PHP7 fixing dwoo dynamic property references Status in Mahara: Fix Committed Status in Mahara 15.04 series: Fix Committed Status in Mahara 15.10 series: Fix Committed Status in Mahara 16.04 series: Fix Committed Status in Mahara 16.10 series: Fix Committed Bug description: Where dynamic property references have changed in php7 - you need to enclose the variable reference name in {} completely. eg: $data = $data->$m[2][$k] has become $data = $data->{$m[2][$k]} To manage notifications about this bug go to: https://bugs.launchpad.net/mahara/+bug/1577259/+subscriptions _______________________________________________ Mailing list: https://launchpad.net/~mahara-contributors Post to : [email protected] Unsubscribe : https://launchpad.net/~mahara-contributors More help : https://help.launchpad.net/ListHelp

