Test Failed
Push — master ( 0b5a40...f1c8a7 )
by
unknown
14:39 queued 14s
created
server/includes/core/class.operations.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2105,9 +2105,9 @@  discard block
 block discarded – undo
2105 2105
 						$props = mapi_getprops($message, $properties);
2106 2106
 						// Do not update timezone information if the appointment times haven't changed
2107 2107
 						if (!isset($action['props']['commonstart']) &&
2108
-						    !isset($action['props']['commonend']) &&
2109
-						    !isset($action['props']['startdate']) &&
2110
-						    !isset($action['props']['enddate'])
2108
+							!isset($action['props']['commonend']) &&
2109
+							!isset($action['props']['startdate']) &&
2110
+							!isset($action['props']['enddate'])
2111 2111
 							) {
2112 2112
 							unset($action['props']['tzdefstart'], $action['props']['tzdefend']);
2113 2113
 						}
@@ -2832,7 +2832,7 @@  discard block
 block discarded – undo
2832 2832
 		 * @return bool true if action succeeded, false if not
2833 2833
 		 */
2834 2834
 		public function deleteMessages($store, $parententryid, $entryids,
2835
-		    $softDelete = false, $unread = false)
2835
+			$softDelete = false, $unread = false)
2836 2836
 		{
2837 2837
 			$result = false;
2838 2838
 			if (!is_array($entryids)) {
@@ -2856,7 +2856,7 @@  discard block
 block discarded – undo
2856 2856
 				$msgprops = mapi_getprops($defaultstore, [PR_IPM_WASTEBASKET_ENTRYID, PR_MDB_PROVIDER]);
2857 2857
 
2858 2858
 				if (!isset($msgprops[PR_IPM_WASTEBASKET_ENTRYID]) ||
2859
-				    $msgprops[PR_IPM_WASTEBASKET_ENTRYID] == $parententryid) {
2859
+					$msgprops[PR_IPM_WASTEBASKET_ENTRYID] == $parententryid) {
2860 2860
 					$result = mapi_folder_deletemessages($folder, $entryids, $flags);
2861 2861
 					break;
2862 2862
 				}
Please login to merge, or discard this patch.