Passed
Push — master ( 76006a...1bce4e )
by
unknown
20:56 queued 13:41
created
server/includes/core/class.operations.php 1 patch
Spacing   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2074,9 +2074,9 @@  discard block
 block discarded – undo
2074 2074
 		$messageProps = [];
2075 2075
 		// It stores the values that is exception allowed or not false -> not allowed
2076 2076
 		$isExceptionAllowed = true;
2077
-		$delete = $actionType == 'delete';	// Flag for MeetingRequest Class whether to send update or cancel mail.
2078
-		$basedate = false;	// Flag for MeetingRequest Class whether to send an exception or not.
2079
-		$isReminderTimeAllowed = true;	// Flag to check reminder minutes is in range of the occurrences
2077
+		$delete = $actionType == 'delete'; // Flag for MeetingRequest Class whether to send update or cancel mail.
2078
+		$basedate = false; // Flag for MeetingRequest Class whether to send an exception or not.
2079
+		$isReminderTimeAllowed = true; // Flag to check reminder minutes is in range of the occurrences
2080 2080
 		$properties = $GLOBALS['properties']->getAppointmentProperties();
2081 2081
 		$send = false;
2082 2082
 		$oldProps = [];
@@ -3067,7 +3067,7 @@  discard block
 block discarded – undo
3067 3067
 			 * convert flags of PR_MESSAGE_FLAGS property to flags that is
3068 3068
 			 * used in mapi_message_setreadflag.
3069 3069
 			 */
3070
-			$flag = MAPI_DEFERRED_ERRORS;		// set unread flag, read receipt will be sent
3070
+			$flag = MAPI_DEFERRED_ERRORS; // set unread flag, read receipt will be sent
3071 3071
 
3072 3072
 			if (($flags & MSGFLAG_RN_PENDING) && isset($msg_action['send_read_receipt']) && $msg_action['send_read_receipt'] == false) {
3073 3073
 				$flag |= SUPPRESS_RECEIPT;
@@ -4000,8 +4000,7 @@  discard block
 block discarded – undo
4000 4000
 		$eidObj = $GLOBALS['entryid']->createABEntryIdObj($distlistEntryid);
4001 4001
 		$isMuidGuid = !$GLOBALS['entryid']->hasNoMuid('', $eidObj);
4002 4002
 		$extidObj = $isMuidGuid ?
4003
-			$GLOBALS['entryid']->createMessageEntryIdObj($eidObj['extid']) :
4004
-			$GLOBALS['entryid']->createMessageEntryIdObj($GLOBALS['entryid']->createMessageEntryId($eidObj));
4003
+			$GLOBALS['entryid']->createMessageEntryIdObj($eidObj['extid']) : $GLOBALS['entryid']->createMessageEntryIdObj($GLOBALS['entryid']->createMessageEntryId($eidObj));
4005 4004
 
4006 4005
 		$store = $GLOBALS["mapisession"]->getDefaultMessageStore();
4007 4006
 		$contactFolderId = $this->getPropertiesFromStoreRoot($store, [PR_IPM_CONTACT_ENTRYID]);
Please login to merge, or discard this patch.