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

This commit is contained in:
Uwe Steinmann 2022-03-23 11:27:53 +01:00
commit 48613b5897
2 changed files with 2 additions and 1 deletions

View File

@ -226,6 +226,7 @@
- various improvements for workflows
- output splash message when removing, editing, adding a category or keyword
- extensions cannot be disabled/enabled if configuration file is not writeable
- prevent cross site scripting in views/bootstrap/class.DefaultKeywords.php
--------------------------------------------------------------------------------
Changes in version 5.1.24

View File

@ -140,7 +140,7 @@ $(document).ready( function() {
'element'=>'input',
'type'=>'text',
'name'=>'name',
'value'=>$category->getName()
'value'=>($category ? htmlspecialchars($category->getName()) : '')
)
);
$this->contentContainerEnd();