Merge branch 'seeddms-5.1.x' into seeddms-6.0.x

This commit is contained in:
Uwe Steinmann 2021-05-11 17:59:11 +02:00
commit 2c0729915c
2 changed files with 3 additions and 3 deletions

View File

@ -273,7 +273,7 @@ $(document).ready(function() {
'element'=>'input',
'type'=>'hidden',
'name'=>'sequence',
'value'=>$seq,
'value'=>(string) $seq,
)
);
}

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='') { /* {{{ */