View Single Post
  #19 (permalink)  
Old 10-15-2008, 07:52 PM
yyovkov yyovkov is offline
Active Member
 
Posts: 29
Default

I am feeling not so stoopid :-).
I found solution for the problem with attachement with names in UTF and with white-space. Here is a short description:

On line 331 add:
--- cut --
document.ssrc = "http://"+this.getAlfUrl()+nodes[i].data.shortlink+"?ticket="+this.getTicket();
--- cut ---

On line 399 add:
--- cut ---
var src = doc.ssrc;
--- cut ---

On line 406 change from:
--- cut ---
AjxStringUtil.urlComponentEncode (src) +
--- cut ---
на
--- cut ---
AjxStringUtil.urlComponentEncode (ssrc) +
--- cut ---

And it should work!
Reply With Quote