From fb9ed76d4be5986aff6bd6c19baf9b9a3f6fb7d9 Mon Sep 17 00:00:00 2001 From: Nicolas Gelot Date: Wed, 1 Apr 2026 10:44:26 +0200 Subject: [PATCH] fix(theming): align Murena branding defaults Update the theme defaults exposed through the Nextcloud theming admin panel so the entity, base URL and slogan match Murena branding instead of the legacy e Foundation values. --- defaults.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/defaults.php b/defaults.php index 7730114..b73c801 100644 --- a/defaults.php +++ b/defaults.php @@ -25,7 +25,7 @@ class OC_Theme { * @return string URL */ public function getBaseUrl() { - return 'https://e.foundation'; + return 'https://murena.com'; } /** @@ -65,7 +65,7 @@ class OC_Theme { * @return string entity name */ public function getEntity() { - return 'e Foundation'; + return 'Murena'; } /** @@ -73,7 +73,7 @@ class OC_Theme { * @return string slogan */ public function getSlogan() { - return 'Choose freedom'; + return 'Freedom starts with privacy.'; } /** -- GitLab