Skip to content

Commit

Permalink
fix parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Oct 20, 2010
1 parent 6b392c4 commit f3a040e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion merge.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
$driver = $injector->getInstance('Turba_Driver')->getDriver($source);

if ($url = Horde_Util::getFormData('url')) {
$url = new Horde_Url($url, true)->unique();
$url = new Horde_Url($url, true);
$url = $url->unique();
}

try {
Expand Down

0 comments on commit f3a040e

Please sign in to comment.