PluginProbe
WPIDE – File Manager & Code Editor / 3.5.9
WPIDE – File Manager & Code Editor v3.5.9
3.5.9 3.5.8 3.5.7 2.0.14 2.0.15 2.0.16 2.0.2 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1 2.2 2.3 2.3.1 2.3.2 2.4.0 2.5 2.6 3.0 3.1 3.2 3.3 All 55 releases
← All changes | vendor/symfony/mime/Part/TextPart.php +2 -1 3.33.5.9 View file →
@@ -41,9 +41,9 @@
41 41
42 42 /**
43 43 * @param resource|string $body
44 44 */
45 - public function __construct($body, ?string $charset = 'utf-8', string $subtype = 'plain', string $encoding = null)
45 + public function __construct($body, ?string $charset = 'utf-8', string $subtype = 'plain', ?string $encoding = null)
46 46 {
47 47 unset($this->_headers);
48 48
49 49 parent::__construct();
@@ -196,8 +196,9 @@
196 196 {
197 197 // convert resources to strings for serialization
198 198 if (null !== $this->seekable) {
199 199 $this->body = $this->getBody();
200 + $this->seekable = null;
200 201 }
201 202
202 203 $this->_headers = $this->getHeaders();
203 204