Skip to content

Commit

Permalink
Fix EZP-21325: View parameters parsing transforms multiple slashes in…
Browse files Browse the repository at this point in the history
…to one /
  • Loading branch information
dpobel committed Jul 30, 2013
1 parent e933e14 commit 3cd6ea9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/ezutils/classes/ezuri.php
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,7 @@ public function setURIString( $uri, $fullInitialize = true )
}
else if ( isset( $paramName ) )
{
if ( !empty( $this->URIArray[$key] ) )
$this->UserArray[ $paramName ] .= '/' . $this->URIArray[$key];
$this->UserArray[ $paramName ] .= '/' . $this->URIArray[$key];
unset( $this->URIArray[$key] );
}
}
Expand Down

0 comments on commit 3cd6ea9

Please sign in to comment.