Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Deprecated: explode(): Passing null to parameter #2 ($string) #39

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@

'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),

'admin_email_addresses' => explode(',', env('ADMIN_EMAIL_ADDRESSES')),
'admin_email_addresses' => explode(',', env('ADMIN_EMAIL_ADDRESSES', '')),
];
4 changes: 3 additions & 1 deletion lang/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -901,5 +901,7 @@
"Click to pin this task": "Klik for at fastgøre sikkerhedskopieringsopgaven",
"Task Pinned": "Sikkerhedskopieringsopgave fastgjort",
"Backup task has been pinned.": "Sikkerhedskopieringsopgaven er blevet fastgjort.",
"Backup task has been unpinned.": "Sikkerhedskopieringsopgaven er blevet fjernet fra fastgørelse."
"Backup task has been unpinned.": "Sikkerhedskopieringsopgaven er blevet fjernet fra fastgørelse.",
"Security Notice": "Sikkerhedsmeddelelse",
"All keys entered here are encrypted and securely stored in the database.": "Alle nøgler indtastet her er krypteret og sikkert gemt i databasen."
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
title="{{ __('About Local Configuration') }}"
text="{{ __('You will specify a local path when creating a Backup Task.') }}"
/>
@else
<x-notice
type="info"
title="{{ __('Security Notice') }}"
text="{{ __('All keys entered here are encrypted and securely stored in the database.') }}"
/>
@endif

<div class="mt-4 flex flex-col space-y-4 md:flex-row md:space-x-6 md:space-y-0">
Expand Down
Loading