diff options
author | Sarven Capadisli <csarven@status.net> | 2010-03-14 14:11:21 -0400 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-03-25 21:33:26 +0100 |
commit | 53bed00f9028523ba003956ed88f9549ec203e3b (patch) | |
tree | 855e26c5dafcc2d75a49c340466da54dcddbc9bb /lib | |
parent | 9ea48298d507ca286e4d7f0dc44291438062782e (diff) |
Added rel=external to geo location link
Diffstat (limited to 'lib')
-rw-r--r-- | lib/noticelist.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index 811b7e4f1..0d4cd4dd9 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -443,7 +443,8 @@ class NoticeListItem extends Widget $name); } else { $xstr = new XMLStringer(false); - $xstr->elementStart('a', array('href' => $url)); + $xstr->elementStart('a', array('href' => $url, + 'rel' => 'external')); $xstr->element('abbr', array('class' => 'geo', 'title' => $latlon), $name); |