contao-community-alliance / merger2

The Merger² for Contao.
GNU Lesser General Public License v3.0
8 stars 5 forks source link

Inkompatibilität in php 7 #17

Closed gmoelter closed 7 years ago

gmoelter commented 7 years ago

Zeile 170 $buffer = $this->$callback[0]->$callback[1]($articleRow, $buffer, $module); Führt zu Fehler 'Function name must be a string'.

Lösung: $buffer = $this->{$callback[0]}->{$callback[1]}($articleRow, $buffer, $module);