We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c89d0e commit 2af487cCopy full SHA for 2af487c
1 file changed
lib/functions.php
@@ -247,6 +247,11 @@ function translateTemplate()
247
OperationLog::setInfo('id_plugin', $id_plugin);
248
OperationLog::setInfo('id_record', $id_record);
249
250
+ // Aggiunta del nome del file per l'operazione di upload
251
+ if ($op === 'upload' && !empty($_FILES['blob']['name'])) {
252
+ OperationLog::setInfo('options', json_encode(['filename' => $_FILES['blob']['name']]));
253
+ }
254
+
255
OperationLog::build($op);
256
}
257
0 commit comments