]> git.mxchange.org Git - friendica.git/commitdiff
Overhauling proxy_url: use $shortpath for long URL in writemode
authorHypolite Petovan <ben.lort@gmail.com>
Sat, 19 Nov 2016 19:03:31 +0000 (14:03 -0500)
committerHypolite Petovan <ben.lort@gmail.com>
Sat, 19 Nov 2016 19:03:31 +0000 (14:03 -0500)
mod/proxy.php

index 4d53c9801c8de3c11c35ef2f4abacfef79646dbb..f2a7c30eacb4332a481a5389cb2ff86bf1f63691 100644 (file)
@@ -306,7 +306,7 @@ function proxy_url($url, $writemode = false, $size = '') {
        // Too long files aren't supported by Apache
        // Writemode in combination with long files shouldn't be possible
        if ((strlen($proxypath) > 250) AND $writemode) {
-               return hash('md5', $url);
+               return $shortpath;
        } elseif (strlen($proxypath) > 250) {
                return $a->get_baseurl() . '/proxy/' . $shortpath . '?url=' . urlencode($url);
        } elseif ($writemode) {