Bug in Test S3 Upload
-
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: 380It 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']); }
- The topic ‘Bug in Test S3 Upload’ is closed to new replies.