]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/section.php
Added class entry-content to attachment list container
[quix0rs-gnu-social.git] / lib / section.php
index d64095a3eb2be146633dd0e8022485075cb8cc66..d145750862a504ec10d1e912e1f4a4c709624040 100644 (file)
@@ -69,14 +69,14 @@ class Section extends Widget
         $have_more = $this->showContent();
 
         if ($have_more) {
-            $this->elementStart('p');
-            $this->element('a', array('href' => $this->moreUrl(),
+            $this->out->elementStart('p');
+            $this->out->element('a', array('href' => $this->moreUrl(),
                                       'class' => 'more'),
                            $this->moreTitle());
-            $this->elementEnd('p');
+            $this->out->elementEnd('p');
         }
 
-        $this->elementEnd('div');
+        $this->out->elementEnd('div');
     }
 
     function divId()
@@ -103,6 +103,6 @@ class Section extends Widget
 
     function moreTitle()
     {
-        return null;
+        return _('More...');
     }
 }