diff options
author | Sarven Capadisli <csarven@status.net> | 2010-01-12 01:13:36 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-14 02:41:07 +0000 |
commit | 5add05c503de2b8c2367fbf04880872b42345b7b (patch) | |
tree | b80a882c8e6dfc0431a86fab5056ef2d27aec8be /actions/showapplication.php | |
parent | a6cc614aaa1e0ea081b090da37cf6ab32782b73c (diff) |
Added anchors to application source and homepage
Diffstat (limited to 'actions/showapplication.php')
-rw-r--r-- | actions/showapplication.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/actions/showapplication.php b/actions/showapplication.php index db28395c2..f2ff8b900 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -167,12 +167,20 @@ class ShowApplicationAction extends OwnerDesignAction $this->elementStart('dl', 'entity_fn'); $this->element('dt', null, _('Name')); - $this->element('dd', 'fn', $this->application->name); + $this->elementStart('dd'); + $this->element('a', array('href' => $this->application->source_url, + 'class' => 'url fn'), + $this->application->name); + $this->elementEnd('dd'); $this->elementEnd('dl'); $this->elementStart('dl', 'entity_org'); $this->element('dt', null, _('Organization')); - $this->element('dd', 'org', $this->application->organization); + $this->elementStart('dd'); + $this->element('a', array('href' => $this->application->homepage, + 'class' => 'url'), + $this->application->organization); + $this->elementEnd('dd'); $this->elementEnd('dl'); $this->elementStart('dl', 'entity_note'); |