Check the actual format

This commit is contained in:
Stephen Paul Weber 2010-06-28 12:33:55 -05:00
parent 66ab5ccf46
commit 6cbd7f6634
1 changed files with 1 additions and 1 deletions

View File

@ -1093,7 +1093,7 @@ class OpenPGP_LiteralDataPacket extends OpenPGP_Packet {
}
function normalize() {
if($opt['format'] == 'u' || $opt['format'] == 't') { // Normalize line endings
if($this->format == 'u' || $this->format == 't') { // Normalize line endings
$this->data = str_replace("\n", "\r\n", str_replace("\r", "\n", str_replace("\r\n", "\n", $this->data)));
}
}