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. 2
      post.php

2
post.php

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

Loading…
Cancel
Save