The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

Skip to content
Snippets Groups Projects
Commit 02c70a61 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed ID escaping bug.

parent 2bdc947d
No related merge requests found
<input class="checkbox-select-item" type="checkbox" name="ids[]" value="<?=$this->id ?>"/>
<input type="hidden" name="idsAll[]" value="<?=$this->id ?>"/>
<input class="checkbox-select-item" type="checkbox" name="ids[]" value="<?=$this->escapeHtmlAttr($this->id) ?>"/>
<input type="hidden" name="idsAll[]" value="<?=$this->escapeHtmlAttr($this->id) ?>"/>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment