summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/section.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/section.php b/lib/section.php
index d64095a3e..0c32ddcf8 100644
--- a/lib/section.php
+++ b/lib/section.php
@@ -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()