fix: [helpers:bootstrap] Make sure to sanitize passed text
parent
d2a88b3a18
commit
da889c4ca2
|
@ -549,7 +549,7 @@ class BoostrapAlert extends BootstrapGeneric
|
||||||
|
|
||||||
private function genContent()
|
private function genContent()
|
||||||
{
|
{
|
||||||
return !is_null($this->options['html']) ? $this->options['html'] : $this->options['text'];
|
return !is_null($this->options['html']) ? $this->options['html'] : h($this->options['text']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1445,7 +1445,7 @@ class BoostrapProgress extends BootstrapGeneric
|
||||||
class BoostrapCollapse extends BootstrapGeneric
|
class BoostrapCollapse extends BootstrapGeneric
|
||||||
{
|
{
|
||||||
private $defaultOptions = [
|
private $defaultOptions = [
|
||||||
'text' => '',
|
'title' => '',
|
||||||
'open' => false,
|
'open' => false,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue