diff options
-rw-r--r-- | admin/batch_manager_global.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/admin/batch_manager_global.php b/admin/batch_manager_global.php index 6eb7150ac..80bd4b250 100644 --- a/admin/batch_manager_global.php +++ b/admin/batch_manager_global.php @@ -210,6 +210,11 @@ DELETE // author if ('author' == $action) { + if (isset($_POST['remove_author'])) + { + $_POST['author'] = null; + } + $datas = array(); foreach ($collection as $image_id) { @@ -232,6 +237,11 @@ DELETE // title if ('title' == $action) { + if (isset($_POST['remove_title'])) + { + $_POST['title'] = null; + } + $datas = array(); foreach ($collection as $image_id) { @@ -261,6 +271,11 @@ DELETE $_POST['date_creation_day'] ); + if (isset($_POST['remove_date_creation'])) + { + $date_creation = null; + } + $datas = array(); foreach ($collection as $image_id) { |