Skip to content

Commit

Permalink
url()
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebacker committed Mar 25, 2015
1 parent 31c6baa commit 7ea0541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Macros.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
$html[] = '<ul ' . $attributes . '>';
foreach ($langsArray as $item) {
$html[] = '<li class="' . $item->class . '" role="menuitem">';
$html[] = '<a href="' . $item->url . '">' . $item->lang . '</a>';
$html[] = '<a href="' . url($item->url) . '">' . $item->lang . '</a>';
$html[] = '</li>';
}
$html[] = '</ul>';
Expand Down

0 comments on commit 7ea0541

Please sign in to comment.