Completed
Push — master ( a9decc...a21b67 )
by Michael
02:51
created
event_member.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,9 +59,9 @@
 block discarded – undo
59 59
                 $rediredtMessage = _MD_EXTCAL_MAX_MEMBER_REACHED;
60 60
             } else {
61 61
                 $eventMemberHandler->createEventmember(array(
62
-                                                           'event_id' => (int)$_POST['event'],
63
-                                                           'uid'      => $xoopsUser->getVar('uid'),
64
-                                                       ));
62
+                                                            'event_id' => (int)$_POST['event'],
63
+                                                            'uid'      => $xoopsUser->getVar('uid'),
64
+                                                        ));
65 65
                 sendMail2member($mode, $event_id, $member_uid, _MD_EXTCAL_SUBJECT_1, _MD_EXTCAL_MSG_1);
66 66
                 $rediredtMessage = _MD_EXTCAL_WHOS_GOING_ADDED_TO_EVENT;
67 67
             }
Please login to merge, or discard this patch.
event_notmember.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,9 +34,9 @@
 block discarded – undo
34 34
         if ($_POST['mode'] === 'add') {
35 35
             $event = $eventHandler->getEvent((int)$_POST['event'], $xoopsUser);
36 36
             $eventNotMemberHandler->createEventNotMember(array(
37
-                                                             'event_id' => (int)$_POST['event'],
38
-                                                             'uid'      => $xoopsUser->getVar('uid'),
39
-                                                         ));
37
+                                                                'event_id' => (int)$_POST['event'],
38
+                                                                'uid'      => $xoopsUser->getVar('uid'),
39
+                                                            ));
40 40
             sendMail2member($mode, $event_id, $member_uid, _MD_EXTCAL_SUBJECT_3, _MD_EXTCAL_MSG_3);
41 41
             $rediredtMessage = _MD_EXTCAL_WHOSNOT_GOING_ADDED_TO_EVENT;
42 42
 
Please login to merge, or discard this patch.
class/pear/Calendar/tests/week_test.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -34,13 +34,13 @@
 block discarded – undo
34 34
     public function testPrevDay_Array()
35 35
     {
36 36
         $this->assertEqual(array(
37
-                               'year' => 2003,
38
-                               'month' => 10,
39
-                               'day' => 8,
40
-                               'hour' => 0,
41
-                               'minute' => 0,
42
-                               'second' => 0,
43
-                           ), $this->cal->prevDay('array'));
37
+                                'year' => 2003,
38
+                                'month' => 10,
39
+                                'day' => 8,
40
+                                'hour' => 0,
41
+                                'minute' => 0,
42
+                                'second' => 0,
43
+                            ), $this->cal->prevDay('array'));
44 44
     }
45 45
 
46 46
     public function testThisDay()
Please login to merge, or discard this patch.
class/pear/Calendar/tests/month_test.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -32,13 +32,13 @@
 block discarded – undo
32 32
     public function testPrevDay_Array()
33 33
     {
34 34
         $this->assertEqual(array(
35
-                               'year' => 2003,
36
-                               'month' => 9,
37
-                               'day' => 30,
38
-                               'hour' => 0,
39
-                               'minute' => 0,
40
-                               'second' => 0,
41
-                           ), $this->cal->prevDay('array'));
35
+                                'year' => 2003,
36
+                                'month' => 9,
37
+                                'day' => 30,
38
+                                'hour' => 0,
39
+                                'minute' => 0,
40
+                                'second' => 0,
41
+                            ), $this->cal->prevDay('array'));
42 42
     }
43 43
 
44 44
     public function testThisDay()
Please login to merge, or discard this patch.
class/pear/Calendar/tests/month_weekdays_test.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -32,13 +32,13 @@
 block discarded – undo
32 32
     public function testPrevDay_Array()
33 33
     {
34 34
         $this->assertEqual(array(
35
-                               'year' => 2003,
36
-                               'month' => 9,
37
-                               'day' => 30,
38
-                               'hour' => 0,
39
-                               'minute' => 0,
40
-                               'second' => 0,
41
-                           ), $this->cal->prevDay('array'));
35
+                                'year' => 2003,
36
+                                'month' => 9,
37
+                                'day' => 30,
38
+                                'hour' => 0,
39
+                                'minute' => 0,
40
+                                'second' => 0,
41
+                            ), $this->cal->prevDay('array'));
42 42
     }
43 43
 
44 44
     public function testThisDay()
Please login to merge, or discard this patch.
view_calendar-week.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,8 +86,8 @@
 block discarded – undo
86 86
 // Flag current day
87 87
 $selectedDays = array(
88 88
     new Calendar_Day(date('Y', xoops_getUserTimestamp(time(), $extcalTimeHandler->_getUserTimeZone($xoopsUser))), 
89
-                     date('n', xoops_getUserTimestamp(time(), $extcalTimeHandler->_getUserTimeZone($xoopsUser))),
90
-                     date('j', xoops_getUserTimestamp(time(), $extcalTimeHandler->_getUserTimeZone($xoopsUser)))),
89
+                        date('n', xoops_getUserTimestamp(time(), $extcalTimeHandler->_getUserTimeZone($xoopsUser))),
90
+                        date('j', xoops_getUserTimestamp(time(), $extcalTimeHandler->_getUserTimeZone($xoopsUser)))),
91 91
 );
92 92
 
93 93
 // Build calendar object
Please login to merge, or discard this patch.
view_calendar-month.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,8 +86,8 @@
 block discarded – undo
86 86
 // Flag current day
87 87
 $selectedDays = array(
88 88
     new Calendar_Day(date('Y', xoops_getUserTimestamp(time(), $extcalTimeHandler->_getUserTimeZone($xoopsUser))), 
89
-                     date('n', xoops_getUserTimestamp(time(), $extcalTimeHandler->_getUserTimeZone($xoopsUser))),
90
-                     date('j', xoops_getUserTimestamp(time(), $extcalTimeHandler->_getUserTimeZone($xoopsUser)))),
89
+                        date('n', xoops_getUserTimestamp(time(), $extcalTimeHandler->_getUserTimeZone($xoopsUser))),
90
+                        date('j', xoops_getUserTimestamp(time(), $extcalTimeHandler->_getUserTimeZone($xoopsUser)))),
91 91
 );
92 92
 
93 93
 // Build calendar object
Please login to merge, or discard this patch.
class/pcltar.lib.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2314,7 +2314,7 @@  discard block
 block discarded – undo
2314 2314
         $p_tar_mode
2315 2315
     ) {
2316 2316
         TrFctStart(__FILE__, __LINE__, 'PclTarHandleExtractByIndexList',
2317
-                   "archive='$p_tarname', index_string='$p_index_string', list, path=$p_path, remove_path='$p_remove_path', tar_mode=$p_tar_mode");
2317
+                    "archive='$p_tarname', index_string='$p_index_string', list, path=$p_path, remove_path='$p_remove_path', tar_mode=$p_tar_mode");
2318 2318
         $v_result = 1;
2319 2319
         $v_nb     = 0;
2320 2320
 
@@ -2425,7 +2425,7 @@  discard block
 block discarded – undo
2425 2425
         $p_tar_mode
2426 2426
     ) {
2427 2427
         TrFctStart(__FILE__, __LINE__, 'PclTarHandleExtractByIndex',
2428
-                   "archive_descr='$p_tar', index_current=$p_index_current, index_start='$p_index_start', index_stop='$p_index_stop', list, path=$p_path, remove_path='$p_remove_path', tar_mode=$p_tar_mode");
2428
+                    "archive_descr='$p_tar', index_current=$p_index_current, index_start='$p_index_start', index_stop='$p_index_stop', list, path=$p_path, remove_path='$p_remove_path', tar_mode=$p_tar_mode");
2429 2429
         $v_result = 1;
2430 2430
         $v_nb     = 0;
2431 2431
 
Please login to merge, or discard this patch.
class/pear/Calendar/docs/examples/6.php 1 patch
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -85,26 +85,26 @@  discard block
 block discarded – undo
85 85
                     echo "<td></td>\n";
86 86
                 } elseif ($Day->isSelected()) {
87 87
                     echo '<td><anchor><strong><u>'
88
-                             . $Day->thisDay()
89
-                             . "</u></strong>\n<go href=\""
90
-                             . $_SERVER['PHP_SELF']
91
-                             . '?viewday=true&amp;y='
92
-                             . $Day->thisYear()
93
-                             . '&amp;m='
94
-                             . $Day->thisMonth()
95
-                             . '&amp;d='
96
-                             . $Day->thisDay()
97
-                             . "&amp;mime=wml\">\n</anchor></td>\n";
88
+                                . $Day->thisDay()
89
+                                . "</u></strong>\n<go href=\""
90
+                                . $_SERVER['PHP_SELF']
91
+                                . '?viewday=true&amp;y='
92
+                                . $Day->thisYear()
93
+                                . '&amp;m='
94
+                                . $Day->thisMonth()
95
+                                . '&amp;d='
96
+                                . $Day->thisDay()
97
+                                . "&amp;mime=wml\">\n</anchor></td>\n";
98 98
                 } else {
99 99
                     echo '<td><anchor>'
100
-                             . $Day->thisDay()
101
-                             . "\n<go href=\"?viewday=true&amp;y="
102
-                             . $Day->thisYear()
103
-                             . '&amp;m='
104
-                             . $Day->thisMonth()
105
-                             . '&amp;d='
106
-                             . $Day->thisDay()
107
-                             . "&amp;mime=wml\"></anchor></td>\n";
100
+                                . $Day->thisDay()
101
+                                . "\n<go href=\"?viewday=true&amp;y="
102
+                                . $Day->thisYear()
103
+                                . '&amp;m='
104
+                                . $Day->thisMonth()
105
+                                . '&amp;d='
106
+                                . $Day->thisDay()
107
+                                . "&amp;mime=wml\"></anchor></td>\n";
108 108
                 }
109 109
                 if ($Day->isLast()) {
110 110
                     echo "</tr>\n";
@@ -197,28 +197,28 @@  discard block
 block discarded – undo
197 197
                 echo "<td></td>\n";
198 198
             } elseif ($Day->isSelected()) {
199 199
                 echo '<td><a href="'
200
-                         . $_SERVER['PHP_SELF']
201
-                         . '?viewday=true&amp;y='
202
-                         . $Day->thisYear()
203
-                         . '&amp;m='
204
-                         . $Day->thisMonth()
205
-                         . '&amp;d='
206
-                         . $Day->thisDay()
207
-                         . '&amp;wml"><strong><u>'
208
-                         . $Day->thisDay()
209
-                         . "</u></strong></a></td>\n";
200
+                            . $_SERVER['PHP_SELF']
201
+                            . '?viewday=true&amp;y='
202
+                            . $Day->thisYear()
203
+                            . '&amp;m='
204
+                            . $Day->thisMonth()
205
+                            . '&amp;d='
206
+                            . $Day->thisDay()
207
+                            . '&amp;wml"><strong><u>'
208
+                            . $Day->thisDay()
209
+                            . "</u></strong></a></td>\n";
210 210
             } else {
211 211
                 echo '<td><a href="'
212
-                         . $_SERVER['PHP_SELF']
213
-                         . '?viewday=true&amp;y='
214
-                         . $Day->thisYear()
215
-                         . '&amp;m='
216
-                         . $Day->thisMonth()
217
-                         . '&amp;d='
218
-                         . $Day->thisDay()
219
-                         . '">'
220
-                         . $Day->thisDay()
221
-                         . "</a></td>\n";
212
+                            . $_SERVER['PHP_SELF']
213
+                            . '?viewday=true&amp;y='
214
+                            . $Day->thisYear()
215
+                            . '&amp;m='
216
+                            . $Day->thisMonth()
217
+                            . '&amp;d='
218
+                            . $Day->thisDay()
219
+                            . '">'
220
+                            . $Day->thisDay()
221
+                            . "</a></td>\n";
222 222
             }
223 223
             if ($Day->isLast()) {
224 224
                 echo "</tr>\n";
Please login to merge, or discard this patch.