Skip to content

Commit

Permalink
Fixes snipe#4069 - include request handler
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Sep 29, 2017
1 parent e37503c commit 9301c56
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 @@ -490,7 +490,7 @@ public function getClone($licenseId = null)
* @param int $licenseId
* @return \Illuminate\Http\RedirectResponse
*/
public function postUpload($licenseId = null)
public function postUpload(Request $request, $licenseId = null)
{
$license = License::find($licenseId);
// the license is valid
Expand Down

0 comments on commit 9301c56

Please sign in to comment.