diff --git a/Theme/Backend/department-list.tpl.php b/Theme/Backend/department-list.tpl.php
index d27fb61..6c711de 100644
--- a/Theme/Backend/department-list.tpl.php
+++ b/Theme/Backend/department-list.tpl.php
@@ -30,7 +30,7 @@ echo $this->getData('nav')->render(); ?>
= $this->getHtml('Departments') ?>
- | = $this->getHtml('ID', 0, 0); ?>
+ | = $this->getHtml('ID', '0', '0'); ?>
| = $this->getHtml('Name') ?>
| = $this->getHtml('Parent') ?>
| = $this->getHtml('Unit') ?>
@@ -40,14 +40,14 @@ echo $this->getData('nav')->render(); ?>
getData('list:elements') as $key => $value) : $c++;
$url = \phpOMS\Uri\UriFactory::build('{/prefix}organization/department/profile?{?}&id=' . $value->getId()); ?>
|
- | = $this->printHtml($value->getId()); ?>
+ | = $this->printHtml($value->getId()); ?>
| = $this->printHtml($value->getName()); ?>
| = $this->printHtml($value->getParent()->getName()); ?>
| = $this->printHtml($value->getUnit()->getName()); ?>
|
- | = $this->getHtml('Empty', 0, 0); ?>
+ | = $this->getHtml('Empty', '0', '0'); ?>
diff --git a/Theme/Backend/position-create.tpl.php b/Theme/Backend/position-create.tpl.php
index 117bc56..9b06978 100644
--- a/Theme/Backend/position-create.tpl.php
+++ b/Theme/Backend/position-create.tpl.php
@@ -36,7 +36,7 @@ echo $this->getData('nav')->render(); ?>
| | = $this->getData('editor')->render('position-editor'); ?>
| | = $this->getData('editor')->getData('text')->render('position-editor', 'description', 'fPositionCreate'); ?>
- | |
+ |
diff --git a/Theme/Backend/position-list.tpl.php b/Theme/Backend/position-list.tpl.php
index 7ecfb75..fb17014 100644
--- a/Theme/Backend/position-list.tpl.php
+++ b/Theme/Backend/position-list.tpl.php
@@ -32,7 +32,7 @@ echo $this->getData('nav')->render(); ?>
= $this->getHtml('Positions') ?>
- | = $this->getHtml('ID', 0, 0); ?>
+ | = $this->getHtml('ID', '0', '0'); ?>
| = $this->getHtml('Name') ?>
| = $this->getHtml('Parent') ?>
| = $this->getHtml('Department') ?>
@@ -42,13 +42,13 @@ echo $this->getData('nav')->render(); ?>
$value) : ++$count;
$url = \phpOMS\Uri\UriFactory::build('{/prefix}organization/position/profile?{?}&id=' . $value->getId()); ?>
|
- | = $this->printHtml($value->getId()); ?>
+ | = $this->printHtml($value->getId()); ?>
| = $this->printHtml($value->getName()); ?>
| = $this->printHtml($value->getParent()->getName()); ?>
| = $this->printHtml($value->getDepartment()->getName()); ?>
- | | = $this->getHtml('Empty', 0, 0); ?>
+ | | = $this->getHtml('Empty', '0', '0'); ?>
diff --git a/Theme/Backend/unit-create.tpl.php b/Theme/Backend/unit-create.tpl.php
index 7ce46ba..7b547cb 100644
--- a/Theme/Backend/unit-create.tpl.php
+++ b/Theme/Backend/unit-create.tpl.php
@@ -34,7 +34,7 @@ echo $this->getData('nav')->render(); ?>
| | = $this->getData('editor')->render('unit-editor'); ?>
| | = $this->getData('editor')->getData('text')->render('unit-editor', 'description', 'fUnitCreate'); ?>
- | |
+ |
diff --git a/Theme/Backend/unit-list.tpl.php b/Theme/Backend/unit-list.tpl.php
index 27b4829..9a30b59 100644
--- a/Theme/Backend/unit-list.tpl.php
+++ b/Theme/Backend/unit-list.tpl.php
@@ -30,7 +30,7 @@ echo $this->getData('nav')->render(); ?>
= $this->getHtml('Units') ?>
- | = $this->getHtml('ID', 0, 0); ?>
+ | = $this->getHtml('ID', '0', '0'); ?>
| = $this->getHtml('Name') ?>
| = $this->getHtml('Parent') ?>
| | | |