summaryrefslogtreecommitdiffstats
path: root/core/js/setupchecks.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/js/setupchecks.js')
-rw-r--r--core/js/setupchecks.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js
index fb01a91b30e..9d3f1ddc508 100644
--- a/core/js/setupchecks.js
+++ b/core/js/setupchecks.js
@@ -219,7 +219,9 @@
}
if (!data.isDefaultPhoneRegionSet) {
messages.push({
- msg: t('core', 'Your installation has no default phone region set. This is required to be able to validate phone numbers in the profile settings without a country code. To allow numbers without a country code, please add "default_phone_region" with the respective ISO 3166-1 code of the wished region.'),
+ msg: t('core', 'Your installation has no default phone region set. This is required to validate phone numbers in the profile settings without a country code. To allow numbers without a country code, please add "default_phone_region" with the respective {linkstart}ISO 3166-1 code ↗{linkend} of the region to your config file.')
+ .replace('{linkstart}', '<a target="_blank" rel="noreferrer noopener" class="external" href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements">')
+ .replace('{linkend}', '</a>'),
type: OC.SetupChecks.MESSAGE_TYPE_INFO
});
}
@@ -454,7 +456,7 @@
'core',
'The PHP memory limit is below the recommended value of 512MB.'
),
- type: OC.SetupChecks.MESSAGE_TYPE_WARNING
+ type: OC.SetupChecks.MESSAGE_TYPE_ERROR
})
}