Added missing end tag

This commit is contained in:
Sarven Capadisli 2010-01-12 01:36:08 +00:00 committed by Zach Copley
parent 8e91e05392
commit 40c6d09c9f
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,6 @@ class ApplicationList extends Widget
} else { } else {
$this->out->elementStart('a', array('href' => $this->application->source_url, $this->out->elementStart('a', array('href' => $this->application->source_url,
'class' => 'url')); 'class' => 'url'));
$this->out->raw($this->application->name); $this->out->raw($this->application->name);
$this->out->elementEnd('a'); $this->out->elementEnd('a');
} }
@ -125,6 +124,7 @@ class ApplicationList extends Widget
$this->out->elementStart('p', 'note'); $this->out->elementStart('p', 'note');
$this->out->raw($this->application->description); $this->out->raw($this->application->description);
$this->out->elementEnd('p'); $this->out->elementEnd('p');
$this->out->elementEnd('li');
if ($this->connections) { if ($this->connections) {
$appUser = Oauth_application_user::getByKeys($this->owner, $this->application); $appUser = Oauth_application_user::getByKeys($this->owner, $this->application);