Invalid Label ObjectType

Bitte in den Beiträgen keine externe Bilder einbinden, sondern nur die Dateianhänge verwenden.
Vielen dank.
  • Thanks

    Updated to version 5.5.1 and now I'm trying to upload a movie for this error


  • Cyperghost

    Hat das Label EasyMedia hinzugefügt.
  • Cyperghost

    Hat das Label bestätigt hinzugefügt.
  • You can solve it temporarily by editing the file easymedia/lib/form/AbstractAlbumItemFormBuilderForm.class.php and replacing the following

    PHP: AbstractAlbumItemFormBuilderForm.class.php
    $labelFormFields[] = LabelFormField::create('lableIDs' . $groupID)
                    ->objectProperty('lableIDs')
                    ->objectType('com.cls.easymedia.image')
                    ->required($labelGroup->forceSelection)
                    ->addDependency(ValueFormFieldDependency::create('category')
                        ->fieldId('categoryIDs')
                        ->values($categoryIDs))
                    ->labelGroup($labelGroup);

    with

    PHP: AbstractAlbumItemFormBuilderForm.class.php
    $labelFormFields[] = LabelFormField::create('lableIDs' . $groupID)
                    ->objectProperty('lableIDs')
                    ->objectType('com.cls.easymedia.video')
                    ->required($labelGroup->forceSelection)
                    ->addDependency(ValueFormFieldDependency::create('category')
                        ->fieldId('categoryIDs')
                        ->values($categoryIDs))
                    ->labelGroup($labelGroup);


    This problem will be resolved with the next update.

  • Cyperghost

    Hat das Thema geschlossen.
  • Cyperghost

    Hat das Label von bestätigt auf behoben geändert.