Skip to content

Commit

Permalink
More PHP7 compat
Browse files Browse the repository at this point in the history
Fixed forgotten line, see #193 (comment)
  • Loading branch information
davidmaack authored Feb 27, 2017
1 parent 8a25af9 commit bd48b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/modules/multicolumnwizard/MultiColumnWizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ protected function initializeWidget(&$arrField, $intRow, $strKey, $varValue)
// Input field callback
if (is_array($arrField['input_field_callback']))
{
if (!is_object($this->$arrField['input_field_callback'][0]))
if (!is_object($this->{$arrField['input_field_callback'][0]}))
{
$this->import($arrField['input_field_callback'][0]);
}
Expand Down

0 comments on commit bd48b23

Please sign in to comment.