Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Fixing a bug in the BasePathBuilder.
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Krämer committed Oct 1, 2015
1 parent 22c89ae commit 52be9f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/PathBuilder/BasePathBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public function fullPath(EntityInterface $entity, array $options = []) {
* @return string
*/
public function url(EntityInterface $entity, array $options = []) {
$url = $this->path($entity) . $this->filename($entity);
$url = $this->path($entity) . $this->filename($entity, $options);
return str_replace('\\', '/', $url);
}

Expand Down

0 comments on commit 52be9f1

Please sign in to comment.