From 3faa3beb2906c0a206a04b7053254dea6348d9c6 Mon Sep 17 00:00:00 2001 From: Medicean Date: Thu, 18 Aug 2022 09:49:03 +0800 Subject: [PATCH] Fix(Core/PHP): fix #319 --- source/core/php/template/database/mssql.js | 2 +- source/core/php/template/database/mysql.js | 2 +- source/core/php/template/database/mysqli.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/core/php/template/database/mssql.js b/source/core/php/template/database/mssql.js index e68fcd1f..86d48390 100644 --- a/source/core/php/template/database/mssql.js +++ b/source/core/php/template/database/mssql.js @@ -97,6 +97,6 @@ module.exports = (arg1, arg2, arg3, arg4, arg5, arg6) => ({ [arg2]: '#{newbase64::user}', [arg3]: '#{newbase64::passwd}', [arg4]: '#{newbase64::db}', - [arg5]: '#{newbase64::::sql}', + [arg5]: '#{newbase64::sql}', } }) \ No newline at end of file diff --git a/source/core/php/template/database/mysql.js b/source/core/php/template/database/mysql.js index ac2dafcd..91bae42f 100644 --- a/source/core/php/template/database/mysql.js +++ b/source/core/php/template/database/mysql.js @@ -92,7 +92,7 @@ module.exports = (arg1, arg2, arg3, arg4, arg5, arg6) => ({ [arg2]: '#{newbase64::user}', [arg3]: '#{newbase64::passwd}', [arg4]: '#{newbase64::db}', - [arg5]: '#{newbase64::::sql}', + [arg5]: '#{newbase64::sql}', [arg6]: '#{newbase64::encode}' } }) \ No newline at end of file diff --git a/source/core/php/template/database/mysqli.js b/source/core/php/template/database/mysqli.js index 1299d1df..df85c833 100644 --- a/source/core/php/template/database/mysqli.js +++ b/source/core/php/template/database/mysqli.js @@ -100,7 +100,7 @@ module.exports = (arg1, arg2, arg3, arg4, arg5, arg6) => ({ [arg2]: '#{newbase64::user}', [arg3]: '#{newbase64::passwd}', [arg4]: '#{newbase64::db}', - [arg5]: '#{newbase64::::sql}', + [arg5]: '#{newbase64::sql}', [arg6]: '#{newbase64::encode}' } }) \ No newline at end of file