menatwork-ia / valumsFileUploader

Contao Extension :: Multiple file uploader without flash
http://www.contao.org/erweiterungsliste/view/valumsFileUploader.html
11 stars 3 forks source link

Fehler im FE ... wegen falsche Methodensignatur für Hook "processFormData" (betrifft Contao 2.9.x) #38

Closed cliffparnitzky closed 12 years ago

cliffparnitzky commented 12 years ago

Betrifft aktuelle Version 3.1.0 rc2 Unter Contao 2.9.5 wird im FE ein Fehler erzeugt.

Ursache ist die fehlerhafte Methodensignatur für Hook "processFormData".

In der Klasse "ValumsFileUploader" (Zeile 297) wird diese mit 4. Attribut "$arrLabels" definiert.

Unter 2.9.5 ist dieses Attribut allerdings noch nicht vorhanden (sondern erst ab 2.10.x).

Aber aktuell gilt der Uploader noch als kompatibel zu 2.9.x

Man kann in der Methodensignatur ja einen Defaultwert vorgeben, also so:

  public function processFormData($arrPost, $arrForm, $arrFiles, $arrLabels = array())

Dann sollte das kompatibel sein ... wird halt nur befüllt, wenn übergeben.