Skip to content
Permalink
Browse files Browse the repository at this point in the history
Fix XSS in cachelists (OBB-217897)
  • Loading branch information
sdennler committed Sep 4, 2022
1 parent 4beac37 commit a9f79c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/templates2/ocstyle/cachelists.tpl
Expand Up @@ -28,11 +28,11 @@
<table class="table" >
<tr>
<td>{t}List name:{/t}</td>
<td><input id="name_filter" name="name" value="{$name_filter}" class="input170" /></td>
<td><input id="name_filter" name="name" value="{$name_filter|escape}" class="input170" /></td>
</tr>
<tr>
<td>{t}By:{/t}</td>
<td><input id="by_filter" name="by" value="{$by_filter}" class="input170" /></td>
<td><input id="by_filter" name="by" value="{$by_filter|escape}" class="input170" /></td>
</tr>
<tr><td class="separator"></td></tr>
<tr>
Expand Down

0 comments on commit a9f79c7

Please sign in to comment.