Avoid multiple uploads of the same file in confluence

This commit is contained in:
Stéphane Goetz 2016-01-25 17:49:26 +01:00
bovenliggende 5d6dc9a8b1
commit 6f43467348
2 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen

BIN
daux.phar

Binair bestand niet weergegeven.

Bestand weergeven

@ -21,7 +21,7 @@ class ContentPage extends \Todaymade\Daux\Format\Base\ContentPage
$filename = basename($file->getPath());
//Add the attachment for later upload
$this->attachments[] = ['filename' => $filename, 'file' => $file];
$this->attachments[$filename] = ['filename' => $filename, 'file' => $file];
return $this->createImageTag($filename, $attributes);
}