We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1466c4a commit 26924c0Copy full SHA for 26924c0
2 files changed
CHANGELOG.md
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9
10
### Fixed
11
12
+- Fix missing `purge` action
13
+
14
+### Fixed
15
16
- Fix user fields nullability to prevent SQL errors during injection
17
- Remove groups as import link field
18
- Fix `clean` function
front/model.form.php
@@ -63,6 +63,11 @@
63
$specific_model = PluginDatainjectionModel::getInstance('csv');
64
$specific_model->saveFields($_POST);
65
Html::back();
66
+} elseif (isset($_POST["purge"])) {
67
+ $model->check($_POST['id'], PURGE);
68
+ $model->delete($_POST, true);
69
70
+ $model->redirectToList();
71
} elseif (isset($_POST["validate"])) {
72
/* update order */
73
$model->check($_POST['id'], UPDATE);
0 commit comments