Skip to content

Commit

Permalink
- warning fix in prepared handling
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/MDB2/trunk@213590 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Lukas Smith committed May 23, 2006
1 parent a389315 commit 1532c47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MDB2/Driver/pgsql.php
Expand Up @@ -644,7 +644,7 @@ function &prepare($query, $types = null, $result_types = null, $lobs = array())
$placeholder_type_guess = $placeholder_type = null;
$question = '?';
$colon = ':';
$positions = array();
$positions = $pgtypes = array();
$position = $parameter = 0;
while ($position < strlen($query)) {
$q_position = strpos($query, $question, $position);
Expand Down

0 comments on commit 1532c47

Please sign in to comment.