X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/78a1c41c40bb216e3879220fc544f8ae816d3c1b..ca3e013b99040f8233fab46a0bd3b2c51db10483:/index.php diff --git a/index.php b/index.php index 63906c1..33bb83e 100644 --- a/index.php +++ b/index.php @@ -27,6 +27,7 @@ require(JIRAFEAU_ROOT . 'lib/lang.php'); check_errors($cfg); if (has_error()) { + require(JIRAFEAU_ROOT . 'lib/template/header.php'); show_errors(); require(JIRAFEAU_ROOT . 'lib/template/footer.php'); exit; @@ -75,7 +76,7 @@ elseif (true === jirafeau_challenge_upload_ip($cfg, get_ip_address($cfg))) {
' . t('FILE_LIM'); echo " " . number_format($cfg['maximal_upload_size'] / 1024, 2) . " GB.
"; - } else if ($cfg['maximal_upload_size'] > 0) { + } elseif ($cfg['maximal_upload_size'] > 0) { echo '' . t('FILE_LIM'); echo " " . $cfg['maximal_upload_size'] . " MB.
"; } else { - echo ''; + echo ''; } ?> @@ -256,19 +260,17 @@ else { ?> @@ -283,7 +285,6 @@ else { @@ -298,8 +299,11 @@ else { document.getElementById('send').style.display = 'none'; if (!check_html5_file_api ()) document.getElementById('max_file_size').innerHTML = ''; + $max_size = jirafeau_get_max_upload_size(); + if ($max_size > 0) { + echo t('NO_BROWSER_SUPPORT') . $max_size; + } + ?>'; addCopyListener('upload_link_button', 'upload_link'); addCopyListener('preview_link_button', 'preview_link');