summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2010-01-12 01:36:08 +0000
committerZach Copley <zach@status.net>2010-01-24 16:36:03 -0800
commit40c6d09c9f3a3a1167015782ac4972681ce98772 (patch)
tree7f2d0ddd6034949a43b907c818f19a201a268e5f /lib
parent8e91e053923f395d4dc0ad7f3f328953c9b17145 (diff)
Added missing end tag
Diffstat (limited to 'lib')
-rw-r--r--lib/applicationlist.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/applicationlist.php b/lib/applicationlist.php
index b404767ba..b1dcc39a9 100644
--- a/lib/applicationlist.php
+++ b/lib/applicationlist.php
@@ -110,7 +110,6 @@ class ApplicationList extends Widget
} else {
$this->out->elementStart('a', array('href' => $this->application->source_url,
'class' => 'url'));
-
$this->out->raw($this->application->name);
$this->out->elementEnd('a');
}
@@ -125,6 +124,7 @@ class ApplicationList extends Widget
$this->out->elementStart('p', 'note');
$this->out->raw($this->application->description);
$this->out->elementEnd('p');
+ $this->out->elementEnd('li');
if ($this->connections) {
$appUser = Oauth_application_user::getByKeys($this->owner, $this->application);