Completed
Pull Request — master (#26)
by Lars
10:03
created
src/Intraface/modules/controlpanel/Controller/Index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->getKernel()->module('controlpanel');
22 22
 
23
-        $smarty = $this->template->create(dirname(__FILE__) . '/templates/index');
23
+        $smarty = $this->template->create(dirname(__FILE__).'/templates/index');
24 24
         return $smarty->render($this);
25 25
     }
26 26
 
Please login to merge, or discard this patch.
src/Intraface/Keyword/Controller/Connect.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             'keywords' => $keywords,
30 30
             'checked' => $checked);
31 31
 
32
-        $smarty = $this->template->create(dirname(__FILE__) . '/../templates/connect');
32
+        $smarty = $this->template->create(dirname(__FILE__).'/../templates/connect');
33 33
         return $smarty->render($this, $data);
34 34
     }
35 35
 
Please login to merge, or discard this patch.
src/Intraface/Filehandler/Controller/Batchedit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
             'kernel' => $kernel,
31 31
             'gateway' => $gateway);
32 32
 
33
-        $tpl = $this->template->create(dirname(__FILE__) . '/../templates/batchedit');
33
+        $tpl = $this->template->create(dirname(__FILE__).'/../templates/batchedit');
34 34
         return $tpl->render($this, $data);
35 35
     }
36 36
 
Please login to merge, or discard this patch.
src/Intraface/Filehandler/Controller/Sizes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
             'instance_manager' => $instance_manager,
30 30
             'instances' => $instances);
31 31
 
32
-        $tpl = $this->template->create(dirname(__FILE__) . '/../templates/sizes');
32
+        $tpl = $this->template->create(dirname(__FILE__).'/../templates/sizes');
33 33
         return $tpl->render($this, $data);
34 34
     }
35 35
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
             'instance_manager' => $instance_manager,
48 48
             'value' => $value);
49 49
 
50
-        $tpl = $this->template->create(dirname(__FILE__) . '/../templates/sizes-edit');
50
+        $tpl = $this->template->create(dirname(__FILE__).'/../templates/sizes-edit');
51 51
         return $tpl->render($this, $data);
52 52
     }
53 53
 
Please login to merge, or discard this patch.
src/Intraface/Filehandler/Controller/Size.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             'instance_manager' => $instance_manager,
22 22
             'value' => $value);
23 23
 
24
-        $tpl = $this->template->create(dirname(__FILE__) . '/../templates/sizes-edit');
24
+        $tpl = $this->template->create(dirname(__FILE__).'/../templates/sizes-edit');
25 25
         return $tpl->render($this, $data);
26 26
     }
27 27
 
Please login to merge, or discard this patch.