]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Added missing end tag
authorSarven Capadisli <csarven@status.net>
Tue, 12 Jan 2010 01:36:08 +0000 (01:36 +0000)
committerZach Copley <zach@status.net>
Mon, 25 Jan 2010 00:36:03 +0000 (16:36 -0800)
lib/applicationlist.php

index b404767ba039736a11c9dfb05de7db1f837b0330..b1dcc39a96412a61ce74c4410a5d55e003b27295 100644 (file)
@@ -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);