Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/2.2' into 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed May 5, 2012
2 parents c147adf + 79f59d1 commit 15c2323
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Connection.php
Expand Up @@ -565,7 +565,7 @@ public function quote($input, $type = null)
$this->connect();

list($value, $bindingType) = $this->getBindingInfo($input, $type);
return $this->_conn->quote($input, $bindingType);
return $this->_conn->quote($value, $bindingType);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Version.php
Expand Up @@ -36,7 +36,7 @@ class Version
/**
* Current Doctrine Version
*/
const VERSION = '2.2.2-DEV';
const VERSION = '2.2.3-DEV';

/**
* Compares a Doctrine version with the current one.
Expand Down

0 comments on commit 15c2323

Please sign in to comment.