From 23b1ab9e06c49273d3f86494a407958d57ab0099 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 4 May 2021 12:09:44 +0200 Subject: [PATCH] use pane function from parent class --- views/bootstrap/class.Settings.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/views/bootstrap/class.Settings.php b/views/bootstrap/class.Settings.php index e4faa9921..f6be1d89f 100644 --- a/views/bootstrap/class.Settings.php +++ b/views/bootstrap/class.Settings.php @@ -31,12 +31,8 @@ */ class SeedDMS_View_Settings extends SeedDMS_Theme_Style { - protected function showPaneHeader($name, $title, $isactive) { /* {{{ */ - echo ''."\n"; - } /* }}} */ - protected function showStartPaneContent($name, $isactive) { /* {{{ */ - echo '
'; + self::parent($name, $isactive); $this->contentContainerStart(); echo ''; echo ''; @@ -45,7 +41,7 @@ class SeedDMS_View_Settings extends SeedDMS_Theme_Style { protected function showEndPaneContent($name, $currentab) { /* {{{ */ echo '
'; $this->contentContainerEnd(); - echo '
'; + self::parent($name, $isactive); } /* }}} */ protected function getTextField($name, $value, $type='', $placeholder='') { /* {{{ */