You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes incorrect implode function usage in _buildInsertQuery (MysqliDb.php) - #1028
This pull request corrects an issue where the implode function was used incorrectly within the _buildInsertQuery function located in MysqliDb.php (identified in version new-v2.9.3).
Fix:
The order of arguments passed to implode has been fixed. The array containing the values to be imploded is now the second argument (commit: a671ad8).
Benefits:
Ensures correct generation of SQL INSERT queries.
Improves code functionality and consistency.
Testing:
Thorough testing is recommended after merging to verify accurate generation of INSERT queries.
Additional Notes:
Reported by @dmaon (first-time contributor, thanks!).
Functionality improvement confirmed by @LifeSteala.
0 commit comments