Browse Source

Fixes incompatibility with BSD's md5 output format.

fixes #190
pull/40/head
nekomiko482 8 years ago
committed by GitHub
parent
commit
a55760299c
  1. 2
      post.php

2
post.php

@ -607,7 +607,7 @@ if (isset($_POST['delete'])) {
error($config['error']['nomove']);
if ($md5cmd) {
$output = shell_exec_error($md5cmd . " < " . escapeshellarg($upload));
$output = shell_exec_error($md5cmd . " " . escapeshellarg($upload));
$output = explode(' ', $output);
$hash = $output[0];
}

Loading…
Cancel
Save