mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-16 14:41:39 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
48613b5897
|
@ -226,6 +226,7 @@
|
||||||
- various improvements for workflows
|
- various improvements for workflows
|
||||||
- output splash message when removing, editing, adding a category or keyword
|
- output splash message when removing, editing, adding a category or keyword
|
||||||
- extensions cannot be disabled/enabled if configuration file is not writeable
|
- 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
|
Changes in version 5.1.24
|
||||||
|
|
|
@ -140,7 +140,7 @@ $(document).ready( function() {
|
||||||
'element'=>'input',
|
'element'=>'input',
|
||||||
'type'=>'text',
|
'type'=>'text',
|
||||||
'name'=>'name',
|
'name'=>'name',
|
||||||
'value'=>$category->getName()
|
'value'=>($category ? htmlspecialchars($category->getName()) : '')
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$this->contentContainerEnd();
|
$this->contentContainerEnd();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user