thesilentman VIP
Total posts: 33
06 Oct 2015 15:50

I was getting a PHP Notice because an array key 'Content-Length' was not found in media/mint/js/mooupload/mooupload.php [84].

While debugging it, I saw that 'X-File-Size' was being set instead, so I changed that line to:

    $response ['size'] = isset($headers ['Content-Length']) ? $headers ['Content-Length'] : $headers ['X-File-Size'];

Notices are gone...

Last Modified: 07 Oct 2015


Sergey
Total posts: 13,748
07 Oct 2015 10:57

Updated for next release.

Powered by Cobalt