Matthew Weier O'Phinney-3 wrote: > > We do no filtering on the parameters received by default. Check the > encoding your server is expecting and the encoding the client is > sending. >
I spent a lot of time and found the problem. Zend_Controller_Router_Route_Module->match() used urldecode() to decode any %## and convert to UTF-8!!! $_GET parameters decoded in the light of encryption on the server, so with no problems. Need replace urldecode() on html_entity_decode() with needed charset. -- View this message in context: http://www.nabble.com/ZF-1.7-and-getParam-charset-problem-tp20495479p20519242.html Sent from the Zend Framework mailing list archive at Nabble.com.
