Fixed inheritance issue

This commit is contained in:
Timothy Warren 2012-02-07 15:56:16 -05:00
parent 377c319bd2
commit 7a47906743
1 changed files with 6 additions and 3 deletions

View File

@ -19,14 +19,17 @@
*/
abstract class DB_PDO extends PDO {
protected $statement;
protected $statement, $manip;
function __construct($dsn, $username=NULL, $password=NULL, $driver_options=array())
{
parent::__construct($dsn, $username, $password, $driver_options);
$class = __CLASS__.'_manip';
$this->manip = new $class;
if(__CLASS__ !== "DB_PDO")
{
$class = __CLASS__.'_manip';
$this->manip = new $class;
}
}
// -------------------------------------------------------------------------