Skip to content

Commit

Permalink
Fixed output of "cmd" parameter
Browse files Browse the repository at this point in the history
(cherry picked from commit 2106df4)
  • Loading branch information
mjansenDatabay committed Apr 24, 2017
1 parent a027066 commit c0f326d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/classes/class.ilSetupGUI.php
Expand Up @@ -596,7 +596,7 @@ function displayHeader()
}
}

$this->tpl->setVariable("VAL_CMD", $_GET["cmd"]);
$this->tpl->setVariable("VAL_CMD", htmlspecialchars($_GET["cmd"]));
$this->tpl->setVariable("TXT_OK",$this->lng->txt("change"));
$this->tpl->setVariable("TXT_CHOOSE_LANGUAGE",$this->lng->txt("choose_language"));
$this->tpl->setVariable("PAGETITLE","Setup");
Expand Down

1 comment on commit c0f326d

@floriankunushevci
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Happy to help fixing this bug :) 👍

Please sign in to comment.