diff --git a/Admin/Routes/Web/Api.php b/Admin/Routes/Web/Api.php index cf782e0..d0a0dea 100755 --- a/Admin/Routes/Web/Api.php +++ b/Admin/Routes/Web/Api.php @@ -22,6 +22,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiDataChange', 'verb' => RouteVerb::ANY, + 'csrf' => true, 'permission' => [ ], ], @@ -48,6 +49,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiLogout', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ ], ], @@ -74,6 +76,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiSettingsSet', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::MODIFY, @@ -83,6 +86,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiSettingsGet', 'verb' => RouteVerb::GET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::READ, @@ -95,6 +99,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiSettingsDesignSet', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::MODIFY, @@ -107,6 +112,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiGroupCreate', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::CREATE, @@ -116,6 +122,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiGroupUpdate', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::MODIFY, @@ -125,6 +132,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiGroupDelete', 'verb' => RouteVerb::DELETE, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::DELETE, @@ -134,6 +142,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiGroupGet', 'verb' => RouteVerb::GET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::READ, @@ -146,6 +155,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAccountFind', 'verb' => RouteVerb::GET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::READ, @@ -157,6 +167,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiGroupFind', 'verb' => RouteVerb::GET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::READ, @@ -168,6 +179,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAccountGroupFind', 'verb' => RouteVerb::GET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::READ, @@ -180,6 +192,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAccountCreate', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::CREATE, @@ -189,6 +202,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAccountUpdate', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::MODIFY, @@ -198,6 +212,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAccountDelete', 'verb' => RouteVerb::DELETE, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::DELETE, @@ -207,6 +222,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAccountGet', 'verb' => RouteVerb::GET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::READ, @@ -218,6 +234,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiSettingsAccountLocalizationSet', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::MODIFY, @@ -230,6 +247,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiModuleStatusUpdate', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::MODIFY, @@ -242,6 +260,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAddAccountToGroup', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::MODIFY, @@ -253,6 +272,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAddGroupToAccount', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::MODIFY, @@ -265,6 +285,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiGroupPermissionGet', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::PERMISSION, @@ -274,6 +295,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAddGroupPermission', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::PERMISSION, @@ -283,6 +305,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiGroupPermissionUpdate', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::PERMISSION, @@ -292,6 +315,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiGroupPermissionDelete', 'verb' => RouteVerb::DELETE, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::PERMISSION, @@ -303,6 +327,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAccountPermissionGet', 'verb' => RouteVerb::GET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::PERMISSION, @@ -312,6 +337,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAddAccountPermission', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::PERMISSION, @@ -321,6 +347,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAccountPermissionUpdate', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::PERMISSION, @@ -330,6 +357,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiAccountPermissionDelete', 'verb' => RouteVerb::DELETE, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::PERMISSION, @@ -341,6 +369,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiReInit', 'verb' => RouteVerb::GET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::CREATE, @@ -353,6 +382,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiUpdateFile', 'verb' => RouteVerb::GET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::CREATE, @@ -364,6 +394,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiCheckForUpdates', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::CREATE, @@ -375,6 +406,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiController:apiCheckForUpdates', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::CREATE, @@ -386,6 +418,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiAttributeController:apiAddressCreate', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::CREATE, @@ -395,6 +428,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiAttributeController:apiAddressUpdate', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::MODIFY, @@ -404,6 +438,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiAttributeController:apiAddressDelete', 'verb' => RouteVerb::DELETE, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::DELETE, @@ -415,6 +450,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiAttributeController:apiContactCreate', 'verb' => RouteVerb::PUT, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::CREATE, @@ -424,6 +460,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiAttributeController:apiContactUpdate', 'verb' => RouteVerb::SET, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::MODIFY, @@ -433,6 +470,7 @@ return [ [ 'dest' => '\Modules\Admin\Controller\ApiAttributeController:apiContactDelete', 'verb' => RouteVerb::DELETE, + 'csrf' => true, 'permission' => [ 'module' => ApiController::NAME, 'type' => PermissionType::DELETE, diff --git a/Admin/Settings/Theme/Backend/settings.tpl.php b/Admin/Settings/Theme/Backend/settings.tpl.php index e117c41..07ccc0b 100755 --- a/Admin/Settings/Theme/Backend/settings.tpl.php +++ b/Admin/Settings/Theme/Backend/settings.tpl.php @@ -57,7 +57,7 @@ echo $this->data['nav']->render();
-
+
getHtml('Settings'); ?>
@@ -75,7 +75,7 @@ echo $this->data['nav']->render();
- +
getHtml('ServerStatus'); ?>
@@ -94,7 +94,7 @@ echo $this->data['nav']->render();
- +
getHtml('Security'); ?>
@@ -153,7 +153,7 @@ echo $this->data['nav']->render();
getHtml('Logging'); ?>
@@ -185,7 +185,7 @@ echo $this->data['nav']->render();
getHtml('Localization'); ?>
@@ -199,7 +199,7 @@ echo $this->data['nav']->render();
-
+
@@ -678,7 +678,7 @@ echo $this->data['nav']->render(); {"key": 1, "type": "event.prevent"}, {"key": 2, "type": "dom.click", "selector": "#iLoginImageUpload"} ]}]'>getHtml('Change'); ?> - + render(); id . '&ptype=p'; - $nextSettings = empty($settings) ? 'admin/settings/general' : 'admin/settings/general?{?}&sid=' . \end($settings)->id . '&ptype=n'; + $previousSettings = empty($settings) ? 'admin/settings/general?csrf={$CSRF}' : 'admin/settings/general?{?}&sid=' . \reset($settings)->id . '&ptype=p'; + $nextSettings = empty($settings) ? 'admin/settings/general?csrf={$CSRF}' : 'admin/settings/general?{?}&sid=' . \end($settings)->id . '&ptype=n'; foreach ($settings as $key => $setting) : ++$count; ?> diff --git a/Theme/Backend/Components/AccountPermissionSelector/account-permission-selector.tpl.php b/Theme/Backend/Components/AccountPermissionSelector/account-permission-selector.tpl.php index 96dedbb..c8532d4 100644 --- a/Theme/Backend/Components/AccountPermissionSelector/account-permission-selector.tpl.php +++ b/Theme/Backend/Components/AccountPermissionSelector/account-permission-selector.tpl.php @@ -41,7 +41,7 @@ $categories = ISO639Enum::getConstants(); ] } ]'>book -
- diff --git a/Theme/Backend/Components/ContactEditor/contacts.tpl.php b/Theme/Backend/Components/ContactEditor/contacts.tpl.php index 1e75696..bf8b76e 100644 --- a/Theme/Backend/Components/ContactEditor/contacts.tpl.php +++ b/Theme/Backend/Components/ContactEditor/contacts.tpl.php @@ -26,7 +26,7 @@ $subtypes = AddressType::getConstants();
- diff --git a/Theme/Backend/Components/GroupTagSelector/group-selector.tpl.php b/Theme/Backend/Components/GroupTagSelector/group-selector.tpl.php index ab6453b..dfdf002 100755 --- a/Theme/Backend/Components/GroupTagSelector/group-selector.tpl.php +++ b/Theme/Backend/Components/GroupTagSelector/group-selector.tpl.php @@ -13,7 +13,7 @@ ] } ]'>book - +
+
+
+ +
getHtml('Localization'); ?>
+
+
+ +
+
+
+
+
+
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+ + +
+ +
+
+ +
+
+
getHtml('Time'); ?>
+
+
+ + +
+ +
+

getHtml('Timeformat'); ?>

+
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+
+ +
+
+
getHtml('Numeric'); ?>
+
+
+ + +
+ +
+ + +
+ +
+

getHtml('Numberformat'); ?>

+
+ +
+
+
+ + +
+
+ +
+
+ + +
+
+
+
+
+
+ +
+
+
getHtml('Precision'); ?>
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+
+ +
+
+
getHtml('Weight'); ?>
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+
+ +
+
+
getHtml('Speed'); ?>
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+
+ +
+
+
getHtml('Length'); ?>
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+
+ +
+
+
getHtml('Area'); ?>
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+
+ +
+
+
getHtml('Volume'); ?>
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+
+
\ No newline at end of file diff --git a/Theme/Backend/accounts-create.tpl.php b/Theme/Backend/accounts-create.tpl.php index 75b7fb2..173c1b0 100755 --- a/Theme/Backend/accounts-create.tpl.php +++ b/Theme/Backend/accounts-create.tpl.php @@ -22,66 +22,73 @@ echo $this->data['nav']->render(); ?>
-
+
getHtml('Account'); ?>
+
+
+
+
- - - + + +
+
- - - + + +
+
- - - + + +
+
- - - + + +
+
- - - + + +
+
- - - + + +
diff --git a/Theme/Backend/accounts-list.tpl.php b/Theme/Backend/accounts-list.tpl.php index 2245f8b..dd63669 100755 --- a/Theme/Backend/accounts-list.tpl.php +++ b/Theme/Backend/accounts-list.tpl.php @@ -24,7 +24,7 @@ $accounts = $this->data['accounts'] ?? []; $tableView = $this->data['tableView']; $tableView->id = 'accountsList'; $tableView->baseUri = 'admin/account/list'; -$tableView->exportUri = '{/api}admin/account/list/export'; +$tableView->exportUri = '{/api}admin/account/list/export?csrf={$CSRF}'; $tableView->setObjects($accounts); $previous = $tableView->getPreviousLink( @@ -106,6 +106,7 @@ echo $this->data['nav']->render(); ?>
+
diff --git a/Theme/Backend/accounts-view.tpl.php b/Theme/Backend/accounts-view.tpl.php index 16af482..d73b761 100644 --- a/Theme/Backend/accounts-view.tpl.php +++ b/Theme/Backend/accounts-view.tpl.php @@ -16,20 +16,7 @@ use phpOMS\Account\AccountStatus; use phpOMS\Account\AccountType; use phpOMS\Account\PermissionOwner; use phpOMS\Account\PermissionType; -use phpOMS\Localization\ISO3166NameEnum; -use phpOMS\Localization\ISO3166TwoEnum; -use phpOMS\Localization\ISO4217Enum; -use phpOMS\Localization\ISO639Enum; -use phpOMS\Localization\ISO8601EnumArray; -use phpOMS\Localization\TimeZoneEnumArray; -use phpOMS\System\File\Local\Directory; use phpOMS\Uri\UriFactory; -use phpOMS\Utils\Converter\AreaType; -use phpOMS\Utils\Converter\LengthType; -use phpOMS\Utils\Converter\SpeedType; -use phpOMS\Utils\Converter\TemperatureType; -use phpOMS\Utils\Converter\VolumeType; -use phpOMS\Utils\Converter\WeightType; /** * @var \phpOMS\Views\View $this @@ -43,7 +30,7 @@ $audits = $this->data['audits'] ?? []; $tableView = $this->data['tableView']; $tableView->id = 'auditList'; $tableView->baseUri = '{/base}/admin/account/settings?id=' . $account->id; -$tableView->exportUri = '{/api}auditor/list/export'; +$tableView->exportUri = '{/api}auditor/list/export?csrf={$CSRF}'; $tableView->setObjects($audits); $previous = $tableView->getPreviousLink( @@ -75,7 +62,7 @@ echo $this->data['nav']->render(); ?>
- +
getHtml('Account'); ?>
@@ -170,7 +157,7 @@ echo $this->data['nav']->render(); ?>
- +
getHtml('Groups'); ?>
@@ -222,7 +209,7 @@ echo $this->data['nav']->render(); ?>
data['nav']->render(); ?>
- request->uri->fragment === 'c-tab-4' ? ' checked' : ''; ?>>
-
-
-
- -
getHtml('Localization'); ?>
-
-
- -
-
-
-
-
-
-
- - -
-
- - -
-
- - -
-
-
- - -
- -
-
- -
-
-
getHtml('Time'); ?>
-
-
-
- - -
-

getHtml('Timeformat'); ?>

-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
-
-
- -
-
-
getHtml('Numeric'); ?>
-
-
-
- - -
-
- - -
-
- -
- - -
-
- - -
-
-
-
-
-
- -
-
-
getHtml('Precision'); ?>
-
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
-
-
- -
-
-
getHtml('Weight'); ?>
-
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
-
-
- -
-
-
getHtml('Speed'); ?>
-
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
-
-
- -
-
-
getHtml('Length'); ?>
-
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
-
-
- -
-
-
getHtml('Area'); ?>
-
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
-
-
- -
-
-
getHtml('Volume'); ?>
-
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
-
-
-
+
request->uri->fragment === 'c-tab-5' ? ' checked' : ''; ?>> @@ -938,6 +463,7 @@ echo $this->data['nav']->render(); ?>
+
diff --git a/Theme/Backend/groups-create.tpl.php b/Theme/Backend/groups-create.tpl.php index 973f8e7..1a29a63 100755 --- a/Theme/Backend/groups-create.tpl.php +++ b/Theme/Backend/groups-create.tpl.php @@ -22,7 +22,7 @@ echo $this->data['nav']->render(); ?>
getHtml('Group'); ?>
diff --git a/Theme/Backend/groups-list.tpl.php b/Theme/Backend/groups-list.tpl.php index 9ec7e73..1803b3a 100755 --- a/Theme/Backend/groups-list.tpl.php +++ b/Theme/Backend/groups-list.tpl.php @@ -25,7 +25,7 @@ $memberCount = $this->data['memberCount'] ?? []; $tableView = $this->data['tableView']; $tableView->id = 'groupsList'; $tableView->baseUri = 'admin/group/list'; -$tableView->exportUri = '{/api}admin/group/list/export'; +$tableView->exportUri = '{/api}admin/group/list/export?csrf={$CSRF}'; $tableView->setObjects($groups); $previous = $tableView->getPreviousLink( @@ -103,6 +103,7 @@ echo $this->data['nav']->render(); ?>
+
\ No newline at end of file diff --git a/Theme/Backend/groups-view.tpl.php b/Theme/Backend/groups-view.tpl.php index 0c0e8cf..6745960 100644 --- a/Theme/Backend/groups-view.tpl.php +++ b/Theme/Backend/groups-view.tpl.php @@ -50,7 +50,7 @@ echo $this->data['nav']->render(); ?>
- +
getHtml('Group'); ?>
@@ -59,7 +59,7 @@ echo $this->data['nav']->render(); ?>
- +
@@ -96,7 +96,7 @@ echo $this->data['nav']->render(); ?>
- @@ -175,7 +175,7 @@ echo $this->data['nav']->render(); ?>
data['nav']->render(); ?> getHtml('Empty', '0', '0'); ?> +
diff --git a/Theme/Backend/modules-info.tpl.php b/Theme/Backend/modules-info.tpl.php index 3735d54..3bb27db 100755 --- a/Theme/Backend/modules-info.tpl.php +++ b/Theme/Backend/modules-info.tpl.php @@ -52,18 +52,18 @@ if (isset($installed[$id])) {
- +
-
+
-
+
@@ -71,12 +71,12 @@ if (isset($installed[$id])) {
-
+
-
+
diff --git a/Theme/Backend/modules-list.tpl.php b/Theme/Backend/modules-list.tpl.php index 68d7386..6bd243a 100755 --- a/Theme/Backend/modules-list.tpl.php +++ b/Theme/Backend/modules-list.tpl.php @@ -26,7 +26,7 @@ $installed = $this->data['installed'] ?? []; $tableView = $this->data['tableView']; $tableView->id = 'moduleList'; $tableView->baseUri = 'admin/module/list'; -$tableView->exportUri = '{/api}admin/module/list/export'; +$tableView->exportUri = '{/api}admin/module/list/export?csrf={$CSRF}'; $tableView->setObjects($modules); ?>
diff --git a/Theme/Backend/modules-log.tpl.php b/Theme/Backend/modules-log.tpl.php index 3a402ca..b3db41e 100755 --- a/Theme/Backend/modules-log.tpl.php +++ b/Theme/Backend/modules-log.tpl.php @@ -69,10 +69,12 @@ echo $this->data['nav']->render();
+
diff --git a/Theme/Backend/page-list.tpl.php b/Theme/Backend/page-list.tpl.php index 95464f7..b215ebe 100755 --- a/Theme/Backend/page-list.tpl.php +++ b/Theme/Backend/page-list.tpl.php @@ -108,10 +108,12 @@ echo $this->data['nav']->render(); ?>
+
diff --git a/Theme/Backend/settings-general.tpl.php b/Theme/Backend/settings-general.tpl.php index 1f01df8..f58d936 100755 --- a/Theme/Backend/settings-general.tpl.php +++ b/Theme/Backend/settings-general.tpl.php @@ -55,7 +55,7 @@ $l11n = $this->data['default_localization'] ?? new NullLocalization();
-
+
getHtml('Settings'); ?>
@@ -73,7 +73,7 @@ $l11n = $this->data['default_localization'] ?? new NullLocalization();
- +
getHtml('Security'); ?>
@@ -132,7 +132,7 @@ $l11n = $this->data['default_localization'] ?? new NullLocalization();
getHtml('Logging'); ?>
@@ -164,7 +164,7 @@ $l11n = $this->data['default_localization'] ?? new NullLocalization();
getHtml('Localization'); ?>
@@ -178,7 +178,7 @@ $l11n = $this->data['default_localization'] ?? new NullLocalization();
-
+
@@ -759,7 +759,7 @@ $l11n = $this->data['default_localization'] ?? new NullLocalization(); {"key": 1, "type": "event.prevent"}, {"key": 2, "type": "dom.click", "selector": "#iLoginImageUpload"} ]}]'>getHtml('Change'); ?> - + getData('module_status_update')); } /**