Skip to content

Commit

Permalink
Add missing method
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Dec 6, 2020
1 parent 50bb83d commit e0a3205
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions adminer/include/pdo.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ function dsn($dsn, $username, $password, $options = array()) {

/*abstract function select_db($database);*/

function quote($string) {
return $this->pdo->quote($string);
}

function query($query, $unbuffered = false) {
$result = $this->pdo->query($query);
$this->error = "";
Expand Down

0 comments on commit e0a3205

Please sign in to comment.