Skip to content

Commit

Permalink
N°7219 - Fatal error following dashboard modification when dashboard …
Browse files Browse the repository at this point in the history
…title contains an é
  • Loading branch information
bdalsass committed Nov 14, 2024
1 parent c70d62a commit 383fc27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/dashboard.class.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1268,8 +1268,8 @@ public function RenderEditor($oPage, $aExtraParams = array())
$sLayoutClass = utils::HtmlEntities($this->sLayoutClass);
$sAutoReload = $this->bAutoReload ? 'true' : 'false';
$sAutoReloadSec = (string) $this->iAutoReloadSec;
$sTitle = utils::HtmlEntities($this->sTitle);
$sFile = utils::HtmlEntities($this->GetDefinitionFile());
$sTitle = utils::EscapeHtml($this->sTitle);
$sFile = addslashes($this->GetDefinitionFile());
$sUrl = utils::GetAbsoluteUrlAppRoot().'pages/ajax.render.php';
$sReloadURL = $this->GetReloadURL();

Expand Down

0 comments on commit 383fc27

Please sign in to comment.