aboutsummaryrefslogtreecommitdiffstats
path: root/demos/autocomplete/search.php
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2010-07-19 15:45:30 -0400
committerScott González <scott.gonzalez@gmail.com>2010-07-19 15:45:30 -0400
commit1f2cfb942f8ac5549b1fe3172501e3486415530e (patch)
treee675788946bbe39bf323bfcb854a87c74ad1a04f /demos/autocomplete/search.php
parent7deb873c51ede9fb5e8b23949ccc4dda58650770 (diff)
downloadjquery-ui-1f2cfb942f8ac5549b1fe3172501e3486415530e.tar.gz
jquery-ui-1f2cfb942f8ac5549b1fe3172501e3486415530e.zip
Autocomplete: Render items as text, not HTML. Fixes #5275 - suggestions are not html-encoded.
As noted in the ticket, it's probably better to default to unstyled items to prevent problems. Users can still implement their own rendering method as shown in the custom data and display demo.
Diffstat (limited to 'demos/autocomplete/search.php')
-rw-r--r--demos/autocomplete/search.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/autocomplete/search.php b/demos/autocomplete/search.php
index 01206489a..8fa9d28f8 100644
--- a/demos/autocomplete/search.php
+++ b/demos/autocomplete/search.php
@@ -3,8 +3,8 @@
$q = strtolower($_GET["term"]);
if (!$q) return;
$items = array(
-"Great <em>Bittern</em>"=>"Botaurus stellaris",
-"Little <em>Grebe</em>"=>"Tachybaptus ruficollis",
+"Great Bittern"=>"Botaurus stellaris",
+"Little Grebe"=>"Tachybaptus ruficollis",
"Black-necked Grebe"=>"Podiceps nigricollis",
"Little Bittern"=>"Ixobrychus minutus",
"Black-crowned Night Heron"=>"Nycticorax nycticorax",