diff --git a/Controller/BackendController.php b/Controller/BackendController.php
index 3a31641..0efafd8 100755
--- a/Controller/BackendController.php
+++ b/Controller/BackendController.php
@@ -77,6 +77,11 @@ final class BackendController extends Controller
$view->setData('accounts', ProfileMapper::getAfterPivot(0, null, 25));
}
+ $profileImage = $this->app->appSettings->get(null, 'default_profile_image', 'Profile');
+ $image = MediaMapper::get((int) $profileImage['content']);
+
+ $view->setData('defaultImage', $image);
+
return $view;
}
@@ -122,6 +127,11 @@ final class BackendController extends Controller
$media = MediaMapper::getFor((int) $profile->account->getId(), 'createdBy');
$view->setData('media', $media instanceof NullMedia ? [] : (!\is_array($media) ? [$media] : $media));
+ $profileImage = $this->app->appSettings->get(null, 'default_profile_image', 'Profile');
+ $image = MediaMapper::get((int) $profileImage['content']);
+
+ $view->setData('defaultImage', $image);
+
return $view;
}
diff --git a/Theme/Backend/Components/AccountGroupSelector/base.tpl.php b/Theme/Backend/Components/AccountGroupSelector/base.tpl.php
index 9bd6baf..606aefb 100755
--- a/Theme/Backend/Components/AccountGroupSelector/base.tpl.php
+++ b/Theme/Backend/Components/AccountGroupSelector/base.tpl.php
@@ -1,54 +1,56 @@
-
-
-
-
-