Completed
Pull Request — master (#142)
by Michael
06:10
created
class/settings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@
 block discarded – undo
259 259
     {
260 260
         $retSet = [];
261 261
         foreach ($this->options as $option) {
262
-            if (1 == $this->getVar('set_' . $option)) {
262
+            if (1 == $this->getVar('set_'.$option)) {
263 263
                 $retSet[] = $option;
264 264
             }
265 265
         }
Please login to merge, or discard this patch.
class/files/user/UserPdf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@
 block discarded – undo
206 206
         $ret .= $this->phpcode->getPhpCodeCommentLine('Pdf Filename');
207 207
         $ret .= $this->phpcode->getPhpCodeCommentLine('Output');
208 208
         $ret .= $this->xc->getXcTplAssign('pdfoutput', "\$pdf->Output('{$tableName}.pdf', 'I')");
209
-        $ret .= $this->xc->getXcTplDisplay($moduleDirname . '_pdf.tpl', '', false);
209
+        $ret .= $this->xc->getXcTplDisplay($moduleDirname.'_pdf.tpl', '', false);
210 210
 
211 211
         return $ret;
212 212
     }
Please login to merge, or discard this patch.
class/modules.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -434,7 +434,7 @@
 block discarded – undo
434 434
     {
435 435
         $retModules = [];
436 436
         foreach ($this->options as $option) {
437
-            if (1 == $this->getVar('mod_' . $option)) {
437
+            if (1 == $this->getVar('mod_'.$option)) {
438 438
                 $retModules[] = $option;
439 439
             }
440 440
         }
Please login to merge, or discard this patch.
class/tables.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@
 block discarded – undo
272 272
     {
273 273
         $retTable = [];
274 274
         foreach ($this->options as $option) {
275
-            if (1 == $this->getVar('table_' . $option)) {
275
+            if (1 == $this->getVar('table_'.$option)) {
276 276
                 $retTable[] = $option;
277 277
             }
278 278
         }
Please login to merge, or discard this patch.