The text search was vulnerable to double quote marks in members names.
authorChuck Scott <cscott@gaslightmedia.com>
Mon, 15 Aug 2016 14:45:46 +0000 (10:45 -0400)
committerChuck Scott <cscott@gaslightmedia.com>
Mon, 15 Aug 2016 14:45:46 +0000 (10:45 -0400)
Now filtering those out.

views/admin/members/list.html

index b792214..c357c9f 100644 (file)
 
              var availableTags = [
     {foreach $namesList as $m}
-                { label: "{$m.name|unescape:'html'}", value: "{$m.name|unescape:'html'}", id: '{$m.id}' },
+                { label: "{$m.name|unescape:'html'|replace:'"':''}", value: "{$m.name|unescape:'html'|replace:'"':''}", id: '{$m.id}' },
     {/foreach}
              ];