fix second parameter of showEndPaneContent()

This commit is contained in:
Uwe Steinmann 2021-05-11 17:21:11 +02:00
parent 4d9a36b080
commit fb366307bf

View File

@ -38,10 +38,10 @@ class SeedDMS_View_Settings extends SeedDMS_Theme_Style {
echo '<tr><td width="20%"></td><td width="80%"></td></tr>';
} /* }}} */
protected function showEndPaneContent($name, $currentab) { /* {{{ */
protected function showEndPaneContent($name, $currenttab) { /* {{{ */
echo '</table>';
$this->contentContainerEnd();
parent::showEndPaneContent($name, $isactive);
parent::showEndPaneContent($name, $currenttab);
} /* }}} */
protected function getTextField($name, $value, $type='', $placeholder='') { /* {{{ */