We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I upload image and duble click the uploaded image on elFinder, content url is wrong on popup window.
https://github.com/Studio-42/elFinder/blob/master/php/elFinderVolumeDriver.class.php I think it should not add 1 on the source code of getContentUrl method on 2981 line.
$path = str_replace($this->separator, '/', substr($this->decode($hash), strlen($this->root) + 1));
It might be below is correct.
$path = str_replace($this->separator, '/', substr($this->decode($hash), strlen($this->root) ));
Is this a bug, or another reasons?
The text was updated successfully, but these errors were encountered:
@mshayashi This is a bug. There is a problem when $root is "/". so I'll fix it.
Thanks! 👍
Sorry, something went wrong.
c5c5f18
nao-pon
No branches or pull requests
When I upload image and duble click the uploaded image on elFinder, content url is wrong on popup window.
https://github.com/Studio-42/elFinder/blob/master/php/elFinderVolumeDriver.class.php
I think it should not add 1 on the source code of getContentUrl method on 2981 line.
It might be below is correct.
Is this a bug, or another reasons?
The text was updated successfully, but these errors were encountered: