diff --git a/Controller/BackendController.php b/Controller/BackendController.php
index 3901b0c..459d0a0 100644
--- a/Controller/BackendController.php
+++ b/Controller/BackendController.php
@@ -163,6 +163,9 @@ final class BackendController extends Controller
$editor = new \Modules\Editor\Theme\Backend\Components\Editor\BaseView($this->app, $request, $response);
$view->addData('editor', $editor);
+ $accGrpSelector = new \Modules\Profile\Theme\Backend\Components\AccountGroupSelector\BaseView($this->app, $request, $response);
+ $view->addData('accGrpSelector', $accGrpSelector);
+
return $view;
}
}
diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php
index cd9f156..d8ec40c 100644
--- a/Theme/Backend/Lang/en.lang.php
+++ b/Theme/Backend/Lang/en.lang.php
@@ -13,27 +13,27 @@
declare(strict_types=1);
return ['News' => [
- 'Additional' => 'Additional',
- 'Archive' => 'Archive',
- 'Author' => 'Author',
- 'Date' => 'Date',
- 'Draft' => 'Draft',
- 'Featured' => 'Featured',
- 'Groups' => 'Groups',
- 'Headline' => 'Headline',
- 'Headlines' => 'Headlines',
- 'Link' => 'Link',
- 'News' => 'News',
- 'Permissions' => 'Permissions',
- 'Plain' => 'Plain',
- 'Preview' => 'Preview',
- 'Publish' => 'Publish',
- 'Settings' => 'Settings',
- 'Status' => 'Status',
- 'Title' => 'Title',
- 'Type' => 'Type',
- 'TYPE0' => 'Article',
- 'TYPE1' => 'Link',
- 'TYPE2' => 'Headline',
- 'Visible' => 'Visible',
+ 'Accounts/Groups' => 'Accounts/Groups',
+ 'Additional' => 'Additional',
+ 'Archive' => 'Archive',
+ 'Author' => 'Author',
+ 'Date' => 'Date',
+ 'Draft' => 'Draft',
+ 'Featured' => 'Featured',
+ 'Groups' => 'Groups',
+ 'Headline' => 'Headline',
+ 'Headlines' => 'Headlines',
+ 'Link' => 'Link',
+ 'News' => 'News',
+ 'Plain' => 'Plain',
+ 'Preview' => 'Preview',
+ 'Publish' => 'Publish',
+ 'Settings' => 'Settings',
+ 'Status' => 'Status',
+ 'Title' => 'Title',
+ 'Type' => 'Type',
+ 'TYPE0' => 'Article',
+ 'TYPE1' => 'Link',
+ 'TYPE2' => 'Headline',
+ 'Visible' => 'Visible',
]];
diff --git a/Theme/Backend/news-create.tpl.php b/Theme/Backend/news-create.tpl.php
index b7fe581..90a8803 100644
--- a/Theme/Backend/news-create.tpl.php
+++ b/Theme/Backend/news-create.tpl.php
@@ -22,7 +22,7 @@ echo $this->getData('nav')->render(); ?>