Skip to content

Commit

Permalink
Allow uploading rtf files (#2620)
Browse files Browse the repository at this point in the history
Microsoft Open License Order Confirmation's are sent in RTF format. 

This change allows us to upload the RTF files under View License -> File Uploads.
  • Loading branch information
tiagom62 authored and snipe committed Sep 16, 2016
1 parent 08f320b commit 06f174a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/LicensesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ public function postUpload($licenseId = null)
foreach (Input::file('licensefile') as $file) {

$rules = array(
'licensefile' => 'required|mimes:png,gif,jpg,jpeg,doc,docx,pdf,txt,zip,rar|max:2000'
'licensefile' => 'required|mimes:png,gif,jpg,jpeg,doc,docx,pdf,txt,zip,rar,rtf|max:2000'
);
$validator = Validator::make(array('licensefile'=> $file), $rules);

Expand Down

0 comments on commit 06f174a

Please sign in to comment.