CMS MADE SIMPLE FORGE

CMS Made Simple Core

 

[#12659] FilePicker & FileManager upload Warning

avatar
Created By: Chris Taylor (chrisbt)
Date Submitted: Sat Oct 28 07:49:54 -0400 2023

Assigned To: Chris Taylor (chrisbt)
Version: 2.2.18
CMSMS Version: 2.2.18
Severity: Trivial
Resolution: Fixed
State: Open
Summary:
FilePicker & FileManager upload Warning
Detailed Description:
PHP warning message, when content_range is null
        change from:
$total_file_size = $content_range[3] ? (int) $content_range[3] :
null;
        to:
$total_file_size = !empty($content_range[3]) ? (int)
$content_range[3] : null;
        in: 
            modules/FilePicker/lib/class.jquery_upload_handler.php line 305
            modules/FileManager/lib/class.jquery_upload_handler.php line 292


History

Comments
avatar
Date: 2023-11-01 14:14
Posted By: Chris Taylor (chrisbt)

fixed in svn
      
Updates

Updated: 2023-11-01 14:14
version_id: -1 => 31828
resolution_id: => 7
assigned_to_id: 100 => 17008