]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/feedlist.php
Modernize Queue_item to use Managed_DataObject functions
[quix0rs-gnu-social.git] / lib / feedlist.php
index 4aacf0b3d84ac4f3a9a327c3be8c8ebe584015b9..c57f377238f6b981d32c6517faa7d87225d08e25 100644 (file)
@@ -46,7 +46,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
  *
  * @see      Action::showExportList()
  */
-
 class FeedList extends Widget
 {
     var $action = null;
@@ -63,6 +62,7 @@ class FeedList extends Widget
             if (!empty($feeds)) {
                 $this->out->elementStart('div', array('id' => 'export_data',
                                                       'class' => 'section'));
+                // TRANS: Header for feed links (h2).
                 $this->out->element('h2', null, _('Feeds'));
                 $this->out->elementStart('ul', array('class' => 'xoxo'));
 
@@ -93,6 +93,9 @@ class FeedList extends Widget
             case Feed::FOAF:
                 $classname = 'foaf';
                 break;
+            case Feed::JSON:
+                $classname = 'json';
+                break;
             }
 
             $this->out->elementStart('li');