Replace integers

put integers back where booleans
This commit is contained in:
Adam Magness 2018-01-15 12:28:07 -05:00
parent 753996c86f
commit 1bea697fb8
1 changed files with 6 additions and 6 deletions

View File

@ -108,9 +108,9 @@ class Mail
'contact-id' => $recipient,
'title' => $subject,
'body' => $body,
'seen' => true,
'seen' => 1,
'reply' => $reply,
'replied' => false,
'replied' => 0,
'uri' => $uri,
'parent-uri' => $replyto,
'created' => datetime_convert()
@ -216,13 +216,13 @@ class Mail
'contact-id' => 0,
'title' => $subject,
'body' => $body,
'seen' => false,
'reply' => false,
'replied' => false,
'seen' => 0,
'reply' => 0,
'replied' => 0,
'uri' => $uri,
'parent-uri' => $replyto,
'created' => datetime_convert(),
'unknown' => true
'unknown' => 1
]
);