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 '
'.$title.''."\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='') { /* {{{ */