Browse Source

Add isempty check for POST variable for multi file upload via URL

pull/40/head
Benjamin Southall 7 years ago
parent
commit
9b9b0f0a7e
  1. 4
      post.php

4
post.php

@ -589,7 +589,9 @@ if (isset($_POST['delete'])) {
for( $counter = 1; $counter <= $config['max_images']; $counter++ ) {
$varname = "file_url". $counter;
upload_by_url($config,$post,$_POST[$varname]);
if (isset($_POST[$varname]) && !empty($_POST[$varname])){
upload_by_url($config,$post,$_POST[$varname]);
}
}
}

Loading…
Cancel
Save