Closed justinmwood closed 3 years ago
read only fields were still editable
Readable.php Line 42 private $readOnly; private $readonly; Line 45 $this->readOnly = !!$readOnly; $this->readonly = !!$readOnly; Line 49 return !!$this->readOnly; return !!$this->readonly;
I tested with the above changes and it started working correctly for me.
Hi @justinmwood
Firstly, thanks for reporting this, much appreciated. I made a fix and made a new release here https://github.com/eversign/eversign-php-sdk/releases/tag/1.19.1
All best and stay safe! :) Milan
read only fields were still editable
Readable.php Line 42 private $readOnly; private $readonly; Line 45 $this->readOnly = !!$readOnly; $this->readonly = !!$readOnly; Line 49 return !!$this->readOnly; return !!$this->readonly;
I tested with the above changes and it started working correctly for me.