Revision 490
Added by Matthias over 18 years ago
| search_convert.php | ||
|---|---|---|
| 35 | 35 |
|
| 36 | 36 |
//htmlspecialchars_decode |
| 37 | 37 |
$string_htmlspecialchars_decode=array( |
| 38 |
"<"=>"<", ">"=>">", "&"=>"&", """=>"\"", "'"=>"\'"
|
|
| 38 |
"<"=>"<", ">"=>">", "&"=>"&", """=>"\"", "'"=>"\'" |
|
| 39 | 39 |
); |
| 40 | 40 |
//htmlspecialchars_decode |
| 41 | 41 |
$string_htmlspecialchars_encode=array( |
| 42 |
"<"=>"<", ">"=>">", "&"=>"&", "\""=>""", "\'"=>"'"
|
|
| 42 |
"<"=>"<", ">"=>">", "&"=>"&", "\""=>""", "\'"=>"'" |
|
| 43 | 43 |
); |
| 44 | 44 |
|
| 45 | 45 |
//convert some bad characters |
Also available in: Unified diff
Fixed issue with escaped single and double quotes in search result (Thanks to thorn)