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

Added missing escape.

parent bd6b80c7
No related merge requests found
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
<? if (count($this->lists) > 0): ?> <? if (count($this->lists) > 0): ?>
<strong><?=$this->transEsc('Saved in')?>:</strong> <strong><?=$this->transEsc('Saved in')?>:</strong>
<? $i=0;foreach($this->lists as $current): ?> <? $i=0;foreach($this->lists as $current): ?>
<a href="<?=$this->url('userList', array('id' => $current->id))?>"><?=$current->title?></a><? if($i++ < count($this->lists)-1): ?>,<? endif; ?> <a href="<?=$this->url('userList', array('id' => $current->id))?>"><?=$this->escapeHtml($current->title)?></a><? if($i++ < count($this->lists)-1): ?>,<? endif; ?>
<? endforeach; ?> <? endforeach; ?>
<br/> <br/>
<? endif; ?> <? endif; ?>
......
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