Skip to content

Commit

Permalink
Fix case-sensitivity
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasReschke authored and MorrisJobke committed Nov 18, 2014
1 parent 3b0a757 commit 5f07fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files_sharing/public.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@

$urlGenerator = new \OC\URLGenerator(\OC::$server->getConfig());
$token = isset($_GET['t']) ? $_GET['t'] : '';
$route = isset($_GET['download']) ? 'files_sharing.sharecontroller.downloadshare' : 'files_sharing.sharecontroller.showshare';
$route = isset($_GET['download']) ? 'files_sharing.sharecontroller.downloadShare' : 'files_sharing.sharecontroller.showShare';

OC_Response::redirect($urlGenerator->linkToRoute($route, array('token' => $token)));

0 comments on commit 5f07fb1

Please sign in to comment.