RegisterRegister    SearchSearch   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

AJAX upload progress bar

File sharing script

File mirror script

Newsletter script
Space don't work when editing filename

 
Post new topic   Reply to topic    SibSoft Ltd Forum Index -> XFileSharing Pro
View previous topic :: View next topic  
Author Message
qq_bbq



Joined: 05 Jul 2009
Posts: 114

PostPosted: Aug 23, 2009 7:40 pm    Post subject: Space don't work when editing filename Reply with quote

When you edit filename with a space, it replace with _
Like you try to change: "Test_File.zip" to "Test File.zip" it will still show as "Test_File.zip"

And if you edit a file that is in a folder, it should redirect back to that folder after editing not to the my files.
Back to top
View user's profile Send private message
PilgrimX182



Joined: 22 Mar 2006
Posts: 2109
Location: UFO Lab

PostPosted: Aug 24, 2009 12:32 pm    Post subject: Reply with quote

Thanks! Will be fixed in next version.
Back to top
View user's profile Send private message Visit poster's website
Eskick



Joined: 10 Mar 2009
Posts: 81

PostPosted: Aug 26, 2009 12:31 am    Post subject: Reply with quote

PilgrimX182 wrote:
Thanks! Will be fixed in next version.

Please also tell us an add and remove fix for those who do not with to update to the next version or those who cannot
Back to top
View user's profile Send private message
PilgrimX182



Joined: 22 Mar 2006
Posts: 2109
Location: UFO Lab

PostPosted: Aug 26, 2009 6:18 am    Post subject: Reply with quote

In index.cgi replace
Code:
      $f->{file_name}=~s/%\d\d/_/gs;
      $f->{file_name}=~s/%/_/gs;
      $f->{file_name}=~s/[\s\#\"]+/_/gs;
      $f->{file_name}=~s/[^\w\d\.-]/_/g if $c->{sanitize_filename};

with
Code:
      $f->{file_name}=~s/%(\d\d)/chr(hex($1))/egs;
      $f->{file_name}=~s/%/_/gs;
      $f->{file_name}=~s/\s{2,}/ /gs;
      $f->{file_name}=~s/[\#\"]+/_/gs;
      $f->{file_name}=~s/[^\w\d\.-]/_/g if $c->{sanitize_filename};
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    SibSoft Ltd Forum Index -> XFileSharing Pro All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Powered by phpBB © 2001, 2005 phpBB Group