Test Failed
Pull Request — master (#9)
by
unknown
09:58
created
server/includes/core/class.operations.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2102,7 +2102,8 @@
 block discarded – undo
2102 2102
 			if (!empty($action['props']['timezone_iana'])) {
2103 2103
 				try {
2104 2104
 					$tzdef = mapi_ianatz_to_tzdef($action['props']['timezone_iana']);
2105
-				} catch (Exception $e) {
2105
+				}
2106
+				catch (Exception $e) {
2106 2107
 				}
2107 2108
 				if ($tzdef !== false) {
2108 2109
 					$action['props']['tzdefstart'] = $action['props']['tzdefend'] = bin2hex($tzdef);
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2119,9 +2119,9 @@
 block discarded – undo
2119 2119
 						$props = mapi_getprops($message, $properties);
2120 2120
 						// Do not update timezone information if the appointment times haven't changed
2121 2121
 						if (!isset($action['props']['commonstart']) &&
2122
-						    !isset($action['props']['commonend']) &&
2123
-						    !isset($action['props']['startdate']) &&
2124
-						    !isset($action['props']['enddate'])
2122
+							!isset($action['props']['commonend']) &&
2123
+							!isset($action['props']['startdate']) &&
2124
+							!isset($action['props']['enddate'])
2125 2125
 							) {
2126 2126
 							unset($action['props']['tzdefstart'], $action['props']['tzdefend']);
2127 2127
 						}
Please login to merge, or discard this patch.