@kohanajs/mod-admin
Advanced tools
Comparing version 5.4.0 to 5.4.1
@@ -5,2 +5,4 @@ # Changelog | ||
### [5.4.1](https://gitlab.com/kohana-js/modules/admin/compare/v5.4.0...v5.4.1) (2023-07-17) | ||
## [5.4.0](https://gitlab.com/kohana-js/modules/admin/compare/v5.3.10...v5.4.0) (2023-07-17) | ||
@@ -7,0 +9,0 @@ |
@@ -55,3 +55,9 @@ const {ControllerMixin} = require("@kohanajs/core-mvc"); | ||
}) | ||
.map(x => (typeof x === 'string') ? `"=""${x}"""`: x) | ||
.map(x => { | ||
if (typeof x === 'string'){ | ||
return `"=""${x.replaceAll('"', '""""')}"""` | ||
}else{ | ||
return x; | ||
} | ||
}) | ||
.join(',')) | ||
@@ -58,0 +64,0 @@ }) |
{ | ||
"name": "@kohanajs/mod-admin", | ||
"version": "5.4.0", | ||
"version": "5.4.1", | ||
"description": "Admin templates for KohanaJS ORM", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
56807
946