Using apostrophes in folder name cause error
Status: Beta
Brought to you by:
pappkamerad
On a UNIX/LINUX web server, using apostrophes in the
name causes the link to result in an error
Example:
'Page: /gallery/Pictures/Parties/The Luau (Rodney and
Pat\'s 30th Anniversary) not found!'
Please contact me at 'sourceforge@simplehuman.org' if
you have any questions. Thanks for making a really cool
piece of software.
Let me know if you need any help!
Logged In: YES
user_id=1276995
Adding this to wrapper.php seems to take care of the error.
...it's a bit hacky, but it seems to work for directories okay.
// fix error with titles like it's_a_picture
$url_request_part = str_replace("\\'","'",$url_request_part);
//global assigns
add before //global assigns