Skip to content

Commit

Permalink
Merge pull request #35 from CodesVault/fix/password-error
Browse files Browse the repository at this point in the history
password error while using special character issue fix
  • Loading branch information
AbmSourav authored Nov 29, 2024
2 parents e5a074f + b7fbdf2 commit 0481918
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codesvault/howdy-qb",
"description": "Mysql Query Builder for WordPress",
"version": "1.6.3",
"version": "1.6.4",
"minimum-stability": "stable",
"scripts": {
"test": "phpunit",
Expand Down
2 changes: 1 addition & 1 deletion src/Connect.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static function pdo()
$host = htmlspecialchars($configs->dbhost, ENT_QUOTES);
$dbname = htmlspecialchars($configs->dbname, ENT_QUOTES);
$user = htmlspecialchars($configs->dbuser, ENT_QUOTES);
$password = htmlspecialchars($configs->dbpassword, ENT_QUOTES);
$password = $configs->dbpassword;
$dns = "mysql:host=$host;dbname=$dbname";

try {
Expand Down

0 comments on commit 0481918

Please sign in to comment.