The variable $base_url should be $basepath.
Line 101 of bookmark_us.module is :
$output .= '<script type="text/javascript"> displayLink("1", "'. $base_url .'", "'. $sitename .'", "'. $bmarkus_stitle .'");</script>';
It should be:
$output .= '<script type="text/javascript"> displayLink("1", "'. $basepath .'", "'. $sitename .'", "'. $bmarkus_stitle .'");</script>';
-Corey
Comments
Comment #1
coreyp_1 commentedSorry, I should pay closer attention.
$base_url is correct, but it is never declared "global" inside the function, and therefore the javascript does not function correctly.
-Corey
Comment #2
Gurpartap Singh commentedThanks! Released 6.x-1.1 http://drupal.org/node/294717 !
Thanks again!
Comment #3
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.