| Anonymous | Login | Signup for a new account | 2013-05-20 04:45 EDT |
| Main | My View | View Issues | Change Log | Roadmap |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | |||||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | |||||||
| 0000367 | [Nagios Core] Web Interface | minor | always | 2012-08-08 10:07 | 2012-08-08 10:07 | |||||||
| Reporter | cologne4711 | View Status | public | |||||||||
| Assigned To | ||||||||||||
| Priority | normal | Resolution | open | |||||||||
| Status | new | Product Version | ||||||||||
| Summary | 0000367: see Issue 0000198: Solution is still not included in Release 3.41 | |||||||||||
| Description |
UTF-8 special characters like german ä (A-Umlaut) are not processed properly by funktion url_encode included in cgiutils.c eg: url_encode of the string "stationär" returns "station%FF%FFr" instead of "station%C3%A4r" |
|||||||||||
| Additional Information |
worng line of code: ... sprintf(temp_expansion, "%%%02X", (unsigned int)input[x]); ... solution: see Issue 0000198 alternate solution: replace line by ... sprintf(temp_expansion, "%%%02X", (unsigned int)(input[x] & 0xFF)); ... |
|||||||||||
| Tags | No tags attached. | |||||||||||
| Nagios Version | 3.41 | |||||||||||
| OS | Centos | |||||||||||
| OS Version | ||||||||||||
| Attached Files | ||||||||||||
|
|
||||||||||||
| There are no notes attached to this issue. |
Issue History |
|||
| Date Modified | Username | Field | Change |
| 2012-08-08 10:07 | cologne4711 | New Issue | |
| 2012-08-08 10:07 | cologne4711 | Nagios Version | => 3.41 |
| 2012-08-08 10:07 | cologne4711 | OS | => Centos |
| Mantis 1.1.7[^] Copyright © 2000 - 2008 Mantis Group |