• The ajax post for test s3 upload has incorrect order to test key “domain” on $config var:

    File: plugins/w3-total-cache/lib/W3/AdminActions/CdnActionsAdmin.php
    Line: 380

    It says:
    if (!is_array($config['domain']) && isset($config['domain']) ) {
        $config['domain'] = explode(',', $config['domain']);
    }
    
    Must say:
    if (isset($config['domain']) && !is_array($config['domain'])) {
        $config['domain'] = explode(',', $config['domain']);
    }

    https://ww.wp.xz.cn/plugins/w3-total-cache/

The topic ‘Bug in Test S3 Upload’ is closed to new replies.