Skip to content

Commit

Permalink
Bug: 14148 Don't convert html special entities in form action.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Nov 2, 2015
1 parent 233c669 commit 9cc5cb3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion framework/Form/lib/Horde/Form/Renderer.php
Expand Up @@ -105,7 +105,6 @@ function open($action, $method, $name, $enctype = null)
{
$this->_name = $name;
$name = htmlspecialchars($name);
$action = htmlspecialchars($action);
$method = htmlspecialchars($method);
echo "<form action=\"$action\" method=\"$method\"" . (empty($name) ? '' : " name=\"$name\" id=\"$name\"") . (is_null($enctype) ? '' : " enctype=\"$enctype\"") . ">\n";
Horde_Util::pformInput();
Expand Down

0 comments on commit 9cc5cb3

Please sign in to comment.