mirror of
https://github.com/processwire/processwire.git
synced 2025-08-17 20:11:46 +02:00
Bump version to 3.0.130
This commit is contained in:
@@ -44,7 +44,7 @@ class ProcessWire extends Wire {
|
||||
* Reversion revision number
|
||||
*
|
||||
*/
|
||||
const versionRevision = 129;
|
||||
const versionRevision = 130;
|
||||
|
||||
/**
|
||||
* Version suffix string (when applicable)
|
||||
|
@@ -216,6 +216,8 @@ class WireDatabasePDO extends Wire implements WireDatabase {
|
||||
$this->pdoConfig['pass'],
|
||||
$this->pdoConfig['options']
|
||||
);
|
||||
// custom PDO statement for later maybe
|
||||
// $this->pdo->setAttribute(\PDO::ATTR_STATEMENT_CLASS,array(__NAMESPACE__.'\WireDatabasePDOStatement',array($this)));
|
||||
}
|
||||
if(!$this->init) $this->_init();
|
||||
return $this->pdo;
|
||||
@@ -894,3 +896,15 @@ class WireDatabasePDO extends Wire implements WireDatabase {
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* custom PDOStatement for later maybe
|
||||
*
|
||||
class WireDatabasePDOStatement extends \PDOStatement {
|
||||
protected $database;
|
||||
protected function __construct(WireDatabasePDO $database) {
|
||||
$this->database = $database;
|
||||
// $database->message($this->queryString);
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
Reference in New Issue
Block a user