fix file download missing extension

pull/217/head
Christophe Vandeplas 2013-06-11 14:52:54 +02:00
parent 5e3976b7bc
commit 45cfafca98
1 changed files with 2 additions and 2 deletions

View File

@ -265,7 +265,7 @@ class AttributesController extends AppController {
$this->viewClass = 'Media';
$params = array(
'id' => $file,
'name' => $filename,
'name' => $filename.".".$fileExt,
'extension' => $fileExt,
'download' => true,
'path' => $path
@ -419,7 +419,7 @@ class AttributesController extends AppController {
// combobox for distribution
$this->set('distributionDescriptions', $this->Attribute->distributionDescriptions);
$this->set('distributionLevels', $this->Event->distributionLevels);
$events = $this->Event->findById($eventId);
$events = $this->Event->findById($eventId);
$this->set('currentDist', $events['Event']['distribution']);
}