Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
z-push
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Björn Fischer
z-push
Commits
2becc5e5
Commit
2becc5e5
authored
May 20, 2016
by
Manfred Kutas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZP-901 Fix ReplyBack of read flag.
Released under the Affero GNU General Public License (AGPL) version 3.
parent
25b1ee3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
replybackimexporter.php
src/backend/kopano/replybackimexporter.php
+2
-4
No files found.
src/backend/kopano/replybackimexporter.php
View file @
2becc5e5
...
@@ -393,11 +393,9 @@ class ReplyBackImExporter implements IImportChanges, IExportChanges {
...
@@ -393,11 +393,9 @@ class ReplyBackImExporter implements IImportChanges, IExportChanges {
else
if
(
$change
[
0
]
===
self
::
CREATION
||
$this
->
isTmpId
(
$id
))
{
else
if
(
$change
[
0
]
===
self
::
CREATION
||
$this
->
isTmpId
(
$id
))
{
$this
->
exportImporter
->
ImportMessageDeletion
(
$id
);
$this
->
exportImporter
->
ImportMessageDeletion
(
$id
);
}
}
elseif
(
$change
[
0
]
===
self
::
READFLAG
)
{
// TODO do it right - get the read flag from the message!
$this
->
exportImporter
->
ImportMessageReadFlag
(
$id
,
(
$change
[
2
]
==
0
)
?
1
:
0
);
}
else
{
else
{
// This block also handles the read flags,
// so that the todo flags are exported properly as well.
// get the server side message
// get the server side message
$message
=
$this
->
getMessage
(
$id
);
$message
=
$this
->
getMessage
(
$id
);
if
(
!
$message
instanceOf
SyncObject
)
{
if
(
!
$message
instanceOf
SyncObject
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment