Skip to content

Commit

Permalink
Fixed a small type preventing query parameters from showing up debug …
Browse files Browse the repository at this point in the history
…messages.
  • Loading branch information
phjanderson committed May 11, 2016
1 parent f18db57 commit f6cd8a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugins/authpdo/auth.php
Expand Up @@ -657,7 +657,7 @@ protected function _query($sql, $arguments = array()) {
} else {
$sth->bindValue($key, $value);
}
$param[$key] = $value; //remember for debugging
$params[$key] = $value; //remember for debugging
}

$sth->execute();
Expand Down

0 comments on commit f6cd8a7

Please sign in to comment.