diff --git a/wire/core/ProcessWire.php b/wire/core/ProcessWire.php index b94428c5..3c2d5909 100644 --- a/wire/core/ProcessWire.php +++ b/wire/core/ProcessWire.php @@ -79,7 +79,7 @@ class ProcessWire extends Wire { * Reversion revision number * */ - const versionRevision = 206; + const versionRevision = 207; /** * Version suffix string (when applicable) diff --git a/wire/core/WireTempDir.php b/wire/core/WireTempDir.php index e149e12d..4e9b2657 100644 --- a/wire/core/WireTempDir.php +++ b/wire/core/WireTempDir.php @@ -43,6 +43,7 @@ class WireTempDir extends Wire { * */ public function __construct($name = '', $basePath = '') { + parent::__construct(); if($name) $this->init($name, $basePath); }