Skip to content

Commit

Permalink
getFTAN() returns a hidden field whith title="" alt=""
Browse files Browse the repository at this point in the history
simply removed this

Thx to Webbird  for reporting
  • Loading branch information
NorHei committed Nov 17, 2015
1 parent 9fd6f52 commit 448c389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wbce/framework/SecureForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ final public function getFTAN($as_tag = true)

if ($as_tag == true) {
// by default return a complete, hidden <input>-tag
return '<input type="hidden" name="' . $this->_tokenname . '" value="' . htmlspecialchars($signed) . '" title="" alt="" />';
return '<input type="hidden" name="' . $this->_tokenname . '" value="' . htmlspecialchars($signed) . '" />';
}

return $this->_tokenname . '=' . $signed;
Expand Down

0 comments on commit 448c389

Please sign in to comment.