Subversion Repositories eFlore/Applications.coel

Rev

Rev 748 | Rev 775 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 748 Rev 760
Line 395... Line 395...
395
		Collection<String> cles = proprietees.keySet();
395
		Collection<String> cles = proprietees.keySet();
396
		Iterator<String> it = cles.iterator();
396
		Iterator<String> it = cles.iterator();
Line 397... Line 397...
397
		
397
		
398
		while (it.hasNext())	{
398
		while (it.hasNext())	{
399
			String cle = it.next();
399
			String cle = it.next();
400
			post += getPrefixe() + "_" +  cle + "=" + proprietees.get(cle);
400
			post += getPrefixe() + "_" +  cle + "=" + URL.encodeComponent(renvoyerValeurCorrecte(cle));
401
			if (it.hasNext())	{
401
			if (it.hasNext())	{
402
				post += "&";
402
				post += "&";
403
			}
403
			}
Line 404... Line -...
404
		}
-
 
405
		
404
		}
406
		URL.encode(post);
405
		
407
		return post;
406
		return post;