@@ -20,7 +20,7 @@ |
||
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 |
@@ -29,7 +29,7 @@ |
||
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 |
@@ -30,7 +30,7 @@ |
||
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 |
@@ -29,7 +29,7 @@ discard block |
||
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 |
||
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 |
@@ -21,7 +21,7 @@ |
||
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 |