summaryrefslogtreecommitdiff
path: root/lib/noticelist.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2009-11-19 15:14:47 +0000
committerSarven Capadisli <csarven@status.net>2009-11-19 15:14:47 +0000
commitece0675ef8dacb12af1d1a06af851e704ed4cdda (patch)
tree0abf157874c9e8d7c17c65fc8fa5ce0187bac235 /lib/noticelist.php
parentd1893a1ca90a8d69d35d436cc9633a5cfdf84a96 (diff)
Added @class 'location', 'at' text reference for name, and @class 'geo'
Diffstat (limited to 'lib/noticelist.php')
-rw-r--r--lib/noticelist.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php
index 0744d71a9..3bad2cf7c 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -399,13 +399,18 @@ class NoticeListItem extends Widget
$url = $location->getUrl();
+ // TODO: Output @title lat and lon on element @class geo
+ // e.g., class="geo" title="45.5088375;-73.587809"
+ $this->out->elementStart('span', array('class' => 'location'));
+ $this->out->text(_('at'));
if (empty($url)) {
- $this->out->element('span', array('class' => 'location'), $name);
+ $this->out->element('span', array('class' => 'geo'), $name);
} else {
- $this->out->element('a', array('class' => 'location',
+ $this->out->element('a', array('class' => 'geo',
'href' => $url),
$name);
}
+ $this->out->elementEnd('span');
}
/**