Skip to content

Commit

Permalink
Merge pull request #26 from Indicia-Team/hotfix-photo_upload
Browse files Browse the repository at this point in the history
Fix to existing code which checked file types against config
  • Loading branch information
johnvanbreda committed Oct 13, 2015
2 parents e5388bc + a6f470e commit 18ad0a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application/config/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* @var string The application files version number.
*/
$config['version'] = '0.9.1.8';
$config['version'] = '0.9.1.9';
$config['release_date'] = '2015-10-10';
$config['repository'] = 'https://github.com/Indicia-Team/warehouse/releases';

Expand Down
2 changes: 1 addition & 1 deletion modules/indicia_svc_data/controllers/services/data.php
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ public function handle_media()
else {
// Implode array of arrays.
$types = implode(',', array_map(function($a){
implode(',', $a);
return implode(',', $a);
}, $config));
}

Expand Down

0 comments on commit 18ad0a1

Please sign in to comment.