updated drupal core to 7.51

This commit is contained in:
Bachir Soussi Chiadmi
2016-11-01 18:21:48 +01:00
parent 2ed8b48636
commit 1f780c974e
227 changed files with 2960 additions and 762 deletions

View File

@@ -31,6 +31,19 @@ function update_script_test_requirements($phase) {
'severity' => REQUIREMENT_ERROR,
);
break;
case REQUIREMENT_INFO:
$requirements['update_script_test_stop'] = array(
'title' => 'Update script test stop',
'value' => 'Error',
'description' => 'This is a requirements error provided by the update_script_test module to stop the page redirect for the info.',
'severity' => REQUIREMENT_ERROR,
);
$requirements['update_script_test'] = array(
'title' => 'Update script test',
'description' => 'This is a requirements info provided by the update_script_test module.',
'severity' => REQUIREMENT_INFO,
);
break;
}
}