Skip to content

Commit

Permalink
Add fake PMA_DBI_store_result to other DBIs (bug #3577217)
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Oct 18, 2012
1 parent 15dd484 commit dbf33cb
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
10 changes: 10 additions & 0 deletions libraries/dbi/drizzle.dbi.lib.php
Expand Up @@ -654,4 +654,14 @@ function PMA_DBI_field_flags($result, $i)
return trim($flags);
}

/**
* Store the result returned from multi query
*
* @return false
*/
function PMA_DBI_store_result()
{
return false;
}

?>
9 changes: 9 additions & 0 deletions libraries/dbi/mysql.dbi.lib.php
Expand Up @@ -540,4 +540,13 @@ function PMA_DBI_field_flags($result, $i)
return mysql_field_flags($result, $i);
}

/**
* Store the result returned from multi query
*
* @return false
*/
function PMA_DBI_store_result()
{
return false;
}
?>

0 comments on commit dbf33cb

Please sign in to comment.