You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/js/setupchecks.js
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -423,6 +423,24 @@
423
423
type: OC.SetupChecks.MESSAGE_TYPE_INFO
424
424
})
425
425
}
426
+
if(!data.isImagickEnabled){
427
+
messages.push({
428
+
msg: t(
429
+
'core',
430
+
'The PHP module "imagick" is not enabled although the theming app is. For favicon generation to work correctly, you need to install and enable this module.'
431
+
),
432
+
type: OC.SetupChecks.MESSAGE_TYPE_INFO
433
+
})
434
+
}
435
+
if(!data.areWebauthnExtensionsEnabled){
436
+
messages.push({
437
+
msg: t(
438
+
'core',
439
+
'The PHP modules "gmp" and/or "bcmath" are not enabled. If you use WebAuthn passwordless authentication, these modules are required.'
0 commit comments