X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/d8192d6d361c2d707bac679facce23c7167cb93b..7ba07072d8948012dc5c4037e5c9b65f12ed06d5:/index.php?ds=inline diff --git a/index.php b/index.php old mode 100755 new mode 100644 index 127d9e6..1a5c6aa --- a/index.php +++ b/index.php @@ -35,19 +35,22 @@ if (has_error ()) } /* Ask password if upload password is set. */ -if (strlen ($cfg['upload_password']) > 0) +if (jirafeau_has_upload_password ($cfg)) { session_start(); /* Unlog if asked. */ if (isset ($_POST['action']) && (strcmp ($_POST['action'], 'logout') == 0)) - $_SESSION['upload_auth'] = false; + session_unset (); /* Auth. */ if (isset ($_POST['upload_password'])) { - if (strcmp ($cfg['upload_password'], $_POST['upload_password']) == 0) + if (jirafeau_challenge_upload_password ($cfg, $_POST['upload_password'])) + { $_SESSION['upload_auth'] = true; + $_SESSION['user_upload_password'] = $_POST['upload_password']; + } else { $_SESSION['admin_auth'] = false; @@ -91,18 +94,40 @@ if (strlen ($cfg['upload_password']) > 0) ?>
-

- : +


- + + +
+ +


-

+
+ -

- : +

+

:

+

+
+
+ + +
+

:

+

+
+
+ + +
+

:

+

+
+
+ +

:

+


- -

: @@ -112,10 +137,16 @@ if (strlen ($cfg['upload_password']) > 0)

-

+ +
+
+

+
+
+
@@ -123,12 +154,9 @@ if (strlen ($cfg['upload_password']) > 0)

+ onchange="control_selected_file_size(, '')"/>

- +
@@ -142,18 +170,54 @@ if (strlen ($cfg['upload_password']) > 0) + + 0) + { + echo '

' . t ('File size is limited to'); + echo " " . $cfg['maximal_upload_size'] . " MB

"; + } + ?> +

- - + + + + + " method = "post"> @@ -179,6 +243,7 @@ if (strlen ($cfg['upload_password']) > 0)