Passed
Push — master ( 068fe9...0fc7d4 )
by
unknown
05:57 queued 02:39
created
lib/grommunio/mapiutils.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -305,7 +305,7 @@
 block discarded – undo
305 305
                     // (!EXIST(recurrence_enddate_property) && item[isRecurring] == true && item[start] <= end)
306 306
                     && !isset($p[$props['recurrenceend']]) && true == $p[$props['isrecurring']] && $p[$props['starttime']] <= $end
307 307
                 )
308
-           ) {
308
+            ) {
309 309
             SLog::Write(LOGLEVEL_DEBUG, 'MAPIUtils->IsInCalendarSyncInterval: Message is in the synchronization interval');
310 310
 
311 311
             return true;
Please login to merge, or discard this patch.
lib/grommunio/mapiprovider.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2263,8 +2263,8 @@
 block discarded – undo
2263 2263
      */
2264 2264
     private function getTZFromMAPIBlob($data) {
2265 2265
         return unpack('lbias/lstdbias/ldstbias/' .
2266
-                           'vconst1/vdstendyear/vdstendmonth/vdstendday/vdstendweek/vdstendhour/vdstendminute/vdstendsecond/vdstendmillis/' .
2267
-                           'vconst2/vdststartyear/vdststartmonth/vdststartday/vdststartweek/vdststarthour/vdststartminute/vdststartsecond/vdststartmillis', $data);
2266
+                            'vconst1/vdstendyear/vdstendmonth/vdstendday/vdstendweek/vdstendhour/vdstendminute/vdstendsecond/vdstendmillis/' .
2267
+                            'vconst2/vdststartyear/vdststartmonth/vdststartday/vdststartweek/vdststarthour/vdststartminute/vdststartsecond/vdststartmillis', $data);
2268 2268
     }
2269 2269
 
2270 2270
     /**
Please login to merge, or discard this patch.
lib/core/streamer.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -253,13 +253,13 @@
 block discarded – undo
253 253
                                 $encoder->endTag();
254 254
                             } else {
255 255
                                 if (0 == strlen($element))
256
-                                      // Do not output empty items. Not sure if we should output an empty tag with $encoder->startTag($map[self::STREAMER_ARRAY], false, true);
257
-                                      ; else {
258
-                                          $encoder->startTag($map[self::STREAMER_ARRAY]);
259
-                                          $encoder->content($element);
260
-                                          $encoder->endTag();
261
-                                          $streamed = true;
262
-                                      }
256
+                                        // Do not output empty items. Not sure if we should output an empty tag with $encoder->startTag($map[self::STREAMER_ARRAY], false, true);
257
+                                        ; else {
258
+                                            $encoder->startTag($map[self::STREAMER_ARRAY]);
259
+                                            $encoder->content($element);
260
+                                            $encoder->endTag();
261
+                                            $streamed = true;
262
+                                        }
263 263
                             }
264 264
                         }
265 265
 
Please login to merge, or discard this patch.
mapi/mapidefs.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -632,7 +632,7 @@
 block discarded – undo
632 632
 /* PersistElementType Values ElementIDs for persist data of PR_IPM_OL2007_ENTRYIDS / PR_ADDITIONAL_REN_ENTRYIDS_EX */
633 633
 define('ELEMENT_SENTINEL', 0x0000); // 0 bytes Indicates that the PersistElement structure is the last one contained in the DataElements field of the PersistData structure.
634 634
 define('RSF_ELID_ENTRYID', 0x0001); // variable Indicates that the ElementData field contains the entry ID of the special folder
635
-                                                           // that is of the type indicated by the value of the PersistID field of the PersistData structure.
635
+                                                            // that is of the type indicated by the value of the PersistID field of the PersistData structure.
636 636
 define('RSF_ELID_HEADER', 0x0002); // 4 bytes Indicates that the ElementData field contains a 4-byte header value equal to 0x00000000.
637 637
 
638 638
 define('STGM_DIRECT', 0x00000000);
Please login to merge, or discard this patch.