We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e5a074f + b7fbdf2 commit 0481918Copy full SHA for 0481918
composer.json
@@ -1,7 +1,7 @@
1
{
2
"name": "codesvault/howdy-qb",
3
"description": "Mysql Query Builder for WordPress",
4
- "version": "1.6.3",
+ "version": "1.6.4",
5
"minimum-stability": "stable",
6
"scripts": {
7
"test": "phpunit",
src/Connect.php
@@ -19,7 +19,7 @@ public static function pdo()
19
$host = htmlspecialchars($configs->dbhost, ENT_QUOTES);
20
$dbname = htmlspecialchars($configs->dbname, ENT_QUOTES);
21
$user = htmlspecialchars($configs->dbuser, ENT_QUOTES);
22
- $password = htmlspecialchars($configs->dbpassword, ENT_QUOTES);
+ $password = $configs->dbpassword;
23
$dns = "mysql:host=$host;dbname=$dbname";
24
25
try {
0 commit comments