Skip to content
Snippets Groups Projects
Commit 1e0972f8 authored by Phil Stewart's avatar Phil Stewart
Browse files

Issue #3415331 by pstewart, devKhairul: MSSQL Server Custom Functions Error on...

Issue #3415331 by pstewart, devKhairul: MSSQL Server Custom Functions Error on Status Report page should be a warning
parent fea479e9
Branches
Tags
1 merge request!89Change custom functions error to a warning and improve description
...@@ -114,8 +114,8 @@ function sqlsrv_requirements($phase) { ...@@ -114,8 +114,8 @@ function sqlsrv_requirements($phase) {
$requirements['sqlsrv_custom_functions'] = [ $requirements['sqlsrv_custom_functions'] = [
'title' => t('MSSQL Server Custom Functions'), 'title' => t('MSSQL Server Custom Functions'),
'description' => $error === TRUE ? t('Some custom functions are not available. Make sure you deploy them.') : t('All custom functions available.'), 'description' => $error === TRUE ? t('Some custom functions are not available. Make sure you deploy all functions needed by your site. REGEXP is only needed if using a contrib module that makes use of it.') : t('All custom functions available.'),
'severity' => $error === TRUE ? REQUIREMENT_ERROR : REQUIREMENT_OK, 'severity' => $error === TRUE ? REQUIREMENT_WARNING : REQUIREMENT_OK,
'value' => implode(' | ', $briefing), 'value' => implode(' | ', $briefing),
]; ];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment