Make post.php compatable with PHP 5.3x
Compatible with earlier versions of PHP. This should work on 5.4 too, but I haven't tested it.
This commit is contained in:
parent
fe126cb4bf
commit
78ffd76fcf
3
post.php
3
post.php
@ -568,7 +568,8 @@ if (isset($_POST['delete'])) {
|
||||
}
|
||||
|
||||
if ($output = shell_exec_error("cat $filenames | md5sum")) {
|
||||
$hash = explode(' ', $output)[0];
|
||||
$explodedvar = explode(' ', $output);
|
||||
$hash = $explodedvar[0];
|
||||
$post['filehash'] = $hash;
|
||||
} elseif ($config['max_images'] === 1) {
|
||||
$post['filehash'] = md5_file($upload);
|
||||
|
Loading…
Reference in New Issue
Block a user