Completed
Push — master ( 5a1315...9d11bc )
by Gino
03:24
created
class/settings.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public function __construct()
58 58
     {        
59 59
         $tdmcreate = TDMCreateHelper::getInstance();
60
-		$this->initVar('set_id', XOBJ_DTYPE_INT);
60
+        $this->initVar('set_id', XOBJ_DTYPE_INT);
61 61
         $this->initVar('set_name', XOBJ_DTYPE_TXTBOX, $tdmcreate->getConfig('name'));
62 62
         $this->initVar('set_dirname', XOBJ_DTYPE_TXTBOX, $tdmcreate->getConfig('dirname'));
63 63
         $this->initVar('set_version', XOBJ_DTYPE_TXTBOX, $tdmcreate->getConfig('version'));
@@ -287,8 +287,8 @@  discard block
 block discarded – undo
287 287
     }
288 288
 }
289 289
 /**
290
- * Class TDMCreateSettingsHandler.
291
- */
290
+     * Class TDMCreateSettingsHandler.
291
+     */
292 292
 class TDMCreateSettingsHandler extends XoopsPersistableObjectHandler
293 293
 {
294 294
     /**
Please login to merge, or discard this patch.
class/files/TDMCreateFile.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -581,7 +581,7 @@
 block discarded – undo
581 581
         $mode = $this->getMode();
582 582
         $ret = '';
583 583
         $xf = XoopsFile::getHandler();
584
-		if (!$xf->__construct($path, true)) {
584
+        if (!$xf->__construct($path, true)) {
585 585
             // Force to create file if not exist
586 586
             if ($xf->open($mode, true)) {
587 587
                 if ($xf->writable()) {
Please login to merge, or discard this patch.
class/files/templates/admin/TemplatesAdminPages.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     {
67 67
         $this->setModule($module);
68 68
         $this->setTable($table);
69
-		$this->setFileName($filename);
69
+        $this->setFileName($filename);
70 70
     }
71 71
 
72 72
     /*
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     {
260 260
         $module = $this->getModule();
261 261
         $table = $this->getTable();
262
-		$filename = $this->getFileName();
262
+        $filename = $this->getFileName();
263 263
         $moduleDirname = $module->getVar('mod_dirname');
264 264
         $language = $this->getLanguage($moduleDirname, 'AM');
265 265
         $fields = $this->getTableFields($table->getVar('table_mid'), $table->getVar('table_id'), 'field_order');
Please login to merge, or discard this patch.