alsmanager_lib 1.0.71 → 1.0.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/modules.js +2 -2
  2. package/package.json +1 -1
package/lib/modules.js CHANGED
@@ -7898,9 +7898,9 @@ function exportDBSQLSQLite(db_path, dump_path, dump_filename) {
7898
7898
  var path = require('path');
7899
7899
  if (!dump_filename) {
7900
7900
  var d = new Date();
7901
- datestring = d.getFullYear() + ("0" + d.getDate()).slice(-2) + ("0"+(d.getMonth()+1)).slice(-2) +
7901
+ datestring = d.getFullYear() + ("0"+(d.getMonth()+1)).slice(-2) + ("0" + d.getDate()).slice(-2) +
7902
7902
  "_" + ("0" + d.getHours()).slice(-2) + ("0" + d.getMinutes()).slice(-2) + ("0" + d.getSeconds()).slice(-2);
7903
- fileName = "ALSnr_" + dump_source + datestring + ".sql";
7903
+ fileName = "ALSnr_" + datestring + ".sql";
7904
7904
  }
7905
7905
  else {
7906
7906
  fileName = dump_filename;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alsmanager_lib",
3
- "version": "1.0.71",
3
+ "version": "1.0.72",
4
4
  "description": "Funzioni per ALSManager",
5
5
  "license": "ISC",
6
6
  "author": "Luca Cattani",