diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2006-05-22 04:54:51 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2006-05-22 04:54:51 +0100 |
| commit | 071644795cdaf97601ba96d9c89b7910b49ab617 (patch) | |
| tree | 5d2bc6c681e247aaf61ca7febf1fd07c92ae02e5 /functions.php | |
| parent | eb4311d00fde9f38c2ee1d9b95a4baee6fed3b39 (diff) | |
filter editor uses prototype
Diffstat (limited to 'functions.php')
| -rw-r--r-- | functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions.php b/functions.php index 73ef85774..0c1a959a7 100644 --- a/functions.php +++ b/functions.php @@ -1601,7 +1601,7 @@ $is_selected = ""; } printf("<option $is_selected value='%d'>%s</option>", - $line["id"], db_unescape_string($line["title"])); + $line["id"], htmlspecialchars(db_unescape_string($line["title"]))); } print "</select>"; @@ -1630,7 +1630,7 @@ $is_selected = ""; } printf("<option $is_selected value='%d'>%s</option>", - $line["id"], $line["title"]); + $line["id"], htmlspecialchars(db_unescape_string($line["title"]))); } print "</select>"; |