*/
$cfg['debug'] = false;
-/* Enable this debug flag to enforce the legacy (synchronous) file upload mechanism.
+/* Enable this debug flag to enforce the classic (synchronous) file upload mechanism.
*/
-$cfg['debug_enforce_legacy_upload'] = false;
+$cfg['debug_enforce_classic_upload'] = false;
/* Set Jirafeau's maximal upload chunk
* When Jirafeau upload a large file, Jirafeau sends several data chunks to fit server's capabilities.
function check_html5_file_api ()
{
<?php
- if (isset($cfg['debug_enforce_legacy_upload']) && $cfg['debug_enforce_legacy_upload']) { ?>
- // Enforce legacy upload is enabled through config!
+ if (isset($cfg['debug_enforce_classic_upload']) && $cfg['debug_enforce_classic_upload']) { ?>
+ // Enforce classic upload is enabled through config!
return false;
<?php
}