Same here, using Safari 4. Works fine on Firefox 3.5.2.
i thought it might had something to do with uppercases…
i mean in:
if (get_option("sociable_usetargetblank')) {
$link .= target=\"_blank\"";
but since it aint, that aint it…..
anybody a sollution?
i ment, _BLANk / _Blank or somekind, sorry
_blank breaks for me, too, in Safari 4.0.3. Firefox 3.5.3 is fine. I hate doing “me, toos” but maybe if enough of us do it, a fix will come along.
find the line that says:
$link .= " href=\"javascript:window.location='".urlencode($url)."';\" title=\"$description\">";
and change it to:
$link .= ' href="'.$url.'" title="'.$description.'">';
I don’t understand why they chose to use javascript in a standard href, but this should fix it.
The only thing this doesn’t fix is that in Safari if you have a comma in the title it will lose all the following text. Anyone have a solution for this?