Following installation of the panels module, pages accessing the module appear blank. Apache error_log reports:
PHP Fatal error: Only variables can be referenced in /.../modules/panels/panels.module on line 292
Line 292 reads:
$default_radio = array_shift(array_keys($layout['content areas']));
Recommended patch:
$default_radio = array_keys($layout['content areas']);
$default_radio = array_shift($default_radio);
Comments
Comment #1
merlinofchaos commentedThis was fixed in another report; thanks for the patch though!
Comment #2
(not verified) commented