⚰️ drop support for static content from env

This commit is contained in:
DrMaxNix 2024-02-10 22:49:30 +01:00
parent 83472eeb8d
commit 69da0dd0bf
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@
})($path);
// add static content
return array_merge(self::STATIC_CONTENT, Env::NEWSLETTER_STATIC_CONTENT, $content_from_file);
return array_merge(self::STATIC_CONTENT, $content_from_file);
}