set size and unencrypted size to zero on fopen
This commit is contained in:
parent
1a894bd0d8
commit
7fe0e09d14
|
@ -223,9 +223,8 @@ class Encryption extends Wrapper {
|
||||||
|| $mode === 'wb+'
|
|| $mode === 'wb+'
|
||||||
) {
|
) {
|
||||||
// We're writing a new file so start write counter with 0 bytes
|
// We're writing a new file so start write counter with 0 bytes
|
||||||
// TODO can we remove this completely?
|
$this->unencryptedSize = 0;
|
||||||
//$this->unencryptedSize = 0;
|
$this->size = 0;
|
||||||
//$this->size = 0;
|
|
||||||
$this->readOnly = false;
|
$this->readOnly = false;
|
||||||
} else {
|
} else {
|
||||||
$this->readOnly = true;
|
$this->readOnly = true;
|
||||||
|
|
Loading…
Reference in New Issue