Skip to content

Commit

Permalink
Horde::url() needs to respect the fragment part of the URL
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Feb 10, 2014
1 parent 21885d3 commit 1da3ba3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions framework/Core/lib/Horde.php
Expand Up @@ -472,6 +472,9 @@ static public function url($uri, $full = false, $opts = array())
if (isset($puri['query'])) {
$url .= '?' . $puri['query'];
}
if (isset($puri['fragment'])) {
$url .= '#' . $puri['fragment'];
}

$ob = new Horde_Url($url, $full);

Expand Down

0 comments on commit 1da3ba3

Please sign in to comment.