1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-11 16:34:00 +02:00

Do not remove spaces and tabs

This commit is contained in:
Kaloyan Doichinov
2017-10-21 17:31:02 +02:00
parent b331a82d2d
commit ce5df76331

View File

@@ -262,7 +262,7 @@ abstract class AbstractDecoder
return false; return false;
} }
return base64_encode(base64_decode($this->data)) === str_replace(["\n", "\r", "\t", " "], '', $this->data); return base64_encode(base64_decode($this->data)) === str_replace(["\n", "\r"], '', $this->data);
} }
/** /**