Skip to content

Commit

Permalink
Fix(Core/PHP): fix #319
Browse files Browse the repository at this point in the history
  • Loading branch information
Medicean committed Aug 18, 2022
1 parent ed79c67 commit 3faa3be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/core/php/template/database/mssql.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}',
}
})
2 changes: 1 addition & 1 deletion source/core/php/template/database/mysql.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}'
}
})
2 changes: 1 addition & 1 deletion source/core/php/template/database/mysqli.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}'
}
})

0 comments on commit 3faa3be

Please sign in to comment.