diff options
author | Sarven Capadisli <csarven@status.net> | 2010-03-14 14:11:21 -0400 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-03-14 14:11:21 -0400 |
commit | 00cac4c8b18f8b36bda548b465bfb5ee9ad9cfff (patch) | |
tree | ea797cd6acf50907d9000c6e214d22af9a60a447 /lib | |
parent | 6e5e75f341fde6f4ef6b0ad01b38a85bd9583a30 (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); |