Skip to content

Commit

Permalink
remove the strip dash
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid committed Nov 2, 2016
1 parent 558fc34 commit 5f55fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Http/FileHelpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ public function hashName($path = null)
$path = rtrim($path, '/').'/';
}

return str_replace('-', '', $path.str_random(32)).'.'.$this->guessExtension();
return $path.str_random(32).'.'.$this->guessExtension();
}
}

0 comments on commit 5f55fec

Please sign in to comment.