Removing those nassty call by reference 'errors'.

This commit is contained in:
Andrew McMillan 2009-09-10 22:01:57 +12:00
parent 471d0025f1
commit 4794dfa79d

View File

@ -271,7 +271,7 @@ class PdoDatabase {
* @param mixed ... Subsequent arguments are positionally replaced into the $sql_query_string
*/
function Prepare( ) {
$qry = new PdoQuery( &$this );
$qry = new PdoQuery( $this );
$qry->Query(func_get_args());
return $qry;
}