Completed
Push — master ( ec1681...68c045 )
by Michael
02:41
created
comment_edit.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,5 +17,5 @@
 block discarded – undo
17 17
  * @author       XOOPS Development Team,
18 18
  */
19 19
 
20
-include __DIR__ . '/../../mainfile.php';
21
-include XOOPS_ROOT_PATH . '/include/comment_edit.php';
20
+include __DIR__.'/../../mainfile.php';
21
+include XOOPS_ROOT_PATH.'/include/comment_edit.php';
Please login to merge, or discard this patch.
comment_delete.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,5 +17,5 @@
 block discarded – undo
17 17
  * @author       XOOPS Development Team,
18 18
  */
19 19
 
20
-include __DIR__ . '/../../mainfile.php';
21
-include XOOPS_ROOT_PATH . '/include/comment_delete.php';
20
+include __DIR__.'/../../mainfile.php';
21
+include XOOPS_ROOT_PATH.'/include/comment_delete.php';
Please login to merge, or discard this patch.
comment_post.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,5 +17,5 @@
 block discarded – undo
17 17
  * @author       XOOPS Development Team,
18 18
  */
19 19
 
20
-include __DIR__ . '/../../mainfile.php';
21
-include XOOPS_ROOT_PATH . '/include/comment_post.php';
20
+include __DIR__.'/../../mainfile.php';
21
+include XOOPS_ROOT_PATH.'/include/comment_post.php';
Please login to merge, or discard this patch.
blocks/spotlight_events.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/../include/constantes.php';
3
+require_once __DIR__.'/../include/constantes.php';
4 4
 
5 5
 //---------------------------------------------------------------------
6 6
 
Please login to merge, or discard this patch.
admin/admin_footer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,6 @@
 block discarded – undo
19 19
  **/
20 20
 
21 21
 $pathIcon32 = \Xmf\Module\Admin::iconUrl('', 32);
22
-echo "<div class='adminfooter'>\n" . "  <div style='text-align: center;'>\n" . "    <a href='https://xoops.org' rel='external'><img src='{$pathIcon32}/xoopsmicrobutton.gif' alt='XOOPS' title='XOOPS'></a>\n" . "  </div>\n" . '  ' . _AM_MODULEADMIN_ADMIN_FOOTER . "\n" . '</div>';
22
+echo "<div class='adminfooter'>\n"."  <div style='text-align: center;'>\n"."    <a href='https://xoops.org' rel='external'><img src='{$pathIcon32}/xoopsmicrobutton.gif' alt='XOOPS' title='XOOPS'></a>\n"."  </div>\n".'  '._AM_MODULEADMIN_ADMIN_FOOTER."\n".'</div>';
23 23
 
24 24
 xoops_cp_footer();
Please login to merge, or discard this patch.
include/install_function.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,15 +9,15 @@
 block discarded – undo
9 9
 {
10 10
 
11 11
     // Create eXtCal upload directory
12
-    $dir = XOOPS_ROOT_PATH . '/uploads/extcal';
12
+    $dir = XOOPS_ROOT_PATH.'/uploads/extcal';
13 13
     if (!is_dir($dir)) {
14 14
         mkdir($dir);
15
-        mkdir($dir . '/etablissement');
15
+        mkdir($dir.'/etablissement');
16 16
 
17 17
         // Copy index.html files on uploads folders
18
-        $indexFile = __DIR__ . '/index.html';
19
-        copy($indexFile, $dir . '/index.html');
20
-        copy($indexFile, $dir . '/etablissement/index.html');
18
+        $indexFile = __DIR__.'/index.html';
19
+        copy($indexFile, $dir.'/index.html');
20
+        copy($indexFile, $dir.'/etablissement/index.html');
21 21
     }
22 22
 
23 23
     $moduleId               = $xoopsModule->getVar('mid');
Please login to merge, or discard this patch.
class/form/extcalform.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include __DIR__ . '/formdatetime.php';
4
-include __DIR__ . '/formrecurrules.php';
5
-include __DIR__ . '/formfilecheckbox.php';
6
-include __DIR__ . '/formrrulecheckbox.php';
3
+include __DIR__.'/formdatetime.php';
4
+include __DIR__.'/formrecurrules.php';
5
+include __DIR__.'/formfilecheckbox.php';
6
+include __DIR__.'/formrrulecheckbox.php';
7 7
 
8 8
 /**
9 9
  * Class ExtcalThemeForm.
Please login to merge, or discard this patch.
class/form/formrecurrules.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -66,45 +66,45 @@  discard block
 block discarded – undo
66 66
         $formObject = new XoopsFormRadio('', 'rrule_freq', $this->_rrule_freq);
67 67
         $formObject->addOption('none', _MD_EXTCAL_NO_RECCUR_EVENT);
68 68
         $ret .= $formObject->render();
69
-        $ret .= '<br><br><fieldset><legend>' . _MD_EXTCAL_RECCUR_POLICY . '</legend><fieldset><legend>';
69
+        $ret .= '<br><br><fieldset><legend>'._MD_EXTCAL_RECCUR_POLICY.'</legend><fieldset><legend>';
70 70
 
71 71
         $formObject = new XoopsFormRadio('', 'rrule_freq', $this->_rrule_freq);
72 72
         $formObject->addOption('daily', _MD_EXTCAL_DAILY);
73 73
         $ret .= $formObject->render();
74
-        $ret .= '</legend>' . _MD_EXTCAL_DURING . ' ';
74
+        $ret .= '</legend>'._MD_EXTCAL_DURING.' ';
75 75
 
76 76
         $formObject = new XoopsFormText('', 'rrule_daily_interval', 3, 2, $this->_rrule_daily_interval);
77 77
         $ret        .= $formObject->render();
78
-        $ret        .= ' ' . _MD_EXTCAL_DAYS . '</fieldset><br><fieldset><legend>';
78
+        $ret        .= ' '._MD_EXTCAL_DAYS.'</fieldset><br><fieldset><legend>';
79 79
 
80 80
         $formObject = new XoopsFormRadio('', 'rrule_freq', $this->_rrule_freq);
81 81
         $formObject->addOption('weekly', _MD_EXTCAL_WEEKLY);
82 82
         $ret .= $formObject->render();
83
-        $ret .= '</legend>' . _MD_EXTCAL_DURING . ' ';
83
+        $ret .= '</legend>'._MD_EXTCAL_DURING.' ';
84 84
 
85 85
         $formObject = new XoopsFormText('', 'rrule_weekly_interval', 3, 2, $this->_rrule_weekly_interval);
86 86
         $ret        .= $formObject->render();
87
-        $ret        .= ' ' . _MD_EXTCAL_WEEKS . '<br>';
87
+        $ret        .= ' '._MD_EXTCAL_WEEKS.'<br>';
88 88
 
89 89
         $formObject = new XoopsFormCheckBox('', 'rrule_weekly_bydays', $this->_rrule_weekly_bydays);
90
-        $formObject->addOption('MO', _MD_EXTCAL_MO2 . '&nbsp;');
91
-        $formObject->addOption('TU', _MD_EXTCAL_TU2 . '&nbsp;');
92
-        $formObject->addOption('WE', _MD_EXTCAL_WE2 . '&nbsp;');
93
-        $formObject->addOption('TH', _MD_EXTCAL_TH2 . '&nbsp;');
94
-        $formObject->addOption('FR', _MD_EXTCAL_FR2 . '&nbsp;');
95
-        $formObject->addOption('SA', _MD_EXTCAL_SA2 . '&nbsp;');
96
-        $formObject->addOption('SU', _MD_EXTCAL_SU2 . '&nbsp;');
90
+        $formObject->addOption('MO', _MD_EXTCAL_MO2.'&nbsp;');
91
+        $formObject->addOption('TU', _MD_EXTCAL_TU2.'&nbsp;');
92
+        $formObject->addOption('WE', _MD_EXTCAL_WE2.'&nbsp;');
93
+        $formObject->addOption('TH', _MD_EXTCAL_TH2.'&nbsp;');
94
+        $formObject->addOption('FR', _MD_EXTCAL_FR2.'&nbsp;');
95
+        $formObject->addOption('SA', _MD_EXTCAL_SA2.'&nbsp;');
96
+        $formObject->addOption('SU', _MD_EXTCAL_SU2.'&nbsp;');
97 97
         $ret .= $formObject->render();
98 98
         $ret .= '</fieldset><br><fieldset><legend>';
99 99
 
100 100
         $formObject = new XoopsFormRadio('', 'rrule_freq', $this->_rrule_freq);
101 101
         $formObject->addOption('monthly', _MD_EXTCAL_MONTHLY);
102 102
         $ret .= $formObject->render();
103
-        $ret .= '</legend>' . _MD_EXTCAL_DURING . ' ';
103
+        $ret .= '</legend>'._MD_EXTCAL_DURING.' ';
104 104
 
105 105
         $formObject = new XoopsFormText('', 'rrule_monthly_interval', 3, 2, $this->_rrule_monthly_interval);
106 106
         $ret        .= $formObject->render();
107
-        $ret        .= ' ' . _MD_EXTCAL_MONTH . ', ' . _MD_EXTCAL_ON . ' ';
107
+        $ret        .= ' '._MD_EXTCAL_MONTH.', '._MD_EXTCAL_ON.' ';
108 108
 
109 109
         $formObject = new XoopsFormSelect('', 'rrule_monthly_byday', $this->_rrule_monthly_byday);
110 110
         $formObject->addOption('', '&nbsp;');
@@ -144,20 +144,20 @@  discard block
 block discarded – undo
144 144
         $formObject->addOption('-1SA', _MD_EXTCAL_LAST_SA);
145 145
         $formObject->addOption('-1SU', _MD_EXTCAL_LAST_SU);
146 146
         $ret .= $formObject->render();
147
-        $ret .= ' ' . _MD_EXTCAL_OR_THE . ' ';
147
+        $ret .= ' '._MD_EXTCAL_OR_THE.' ';
148 148
 
149 149
         $formObject = new XoopsFormText('', 'rrule_bymonthday', 3, 2, $this->_rrule_bymonthday);
150 150
         $ret        .= $formObject->render();
151
-        $ret        .= ' ' . _MD_EXTCAL_DAY_NUM_MONTH . '</fieldset><br><fieldset><legend>';
151
+        $ret        .= ' '._MD_EXTCAL_DAY_NUM_MONTH.'</fieldset><br><fieldset><legend>';
152 152
 
153 153
         $formObject = new XoopsFormRadio('', 'rrule_freq', $this->_rrule_freq);
154 154
         $formObject->addOption('yearly', _MD_EXTCAL_YEARLY);
155 155
         $ret .= $formObject->render();
156
-        $ret .= '</legend>' . _MD_EXTCAL_DURING . ' ';
156
+        $ret .= '</legend>'._MD_EXTCAL_DURING.' ';
157 157
 
158 158
         $formObject = new XoopsFormText('', 'rrule_yearly_interval', 3, 2, $this->_rrule_yearly_interval);
159 159
         $ret        .= $formObject->render();
160
-        $ret        .= ' ' . _MD_EXTCAL_YEARS . '<br>';
160
+        $ret        .= ' '._MD_EXTCAL_YEARS.'<br>';
161 161
 
162 162
         $formObject = new ExtcalFormRRuleCheckBox('', 'rrule_yearly_bymonths', $this->_rrule_yearly_bymonths);
163 163
         $formObject->addOption('1', _MD_EXTCAL_JAN);
Please login to merge, or discard this patch.
class/pclerror.lib.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
         global $g_pcl_error_string;
139 139
         global $g_pcl_error_code;
140 140
 
141
-        return $g_pcl_error_string . " [code $g_pcl_error_code]";
141
+        return $g_pcl_error_string." [code $g_pcl_error_code]";
142 142
     }
143 143
 
144 144
     // --------------------------------------------------------------------------------
Please login to merge, or discard this patch.