contrib modules security updates

This commit is contained in:
Bachir Soussi Chiadmi
2016-10-13 12:10:40 +02:00
parent ffd758abc9
commit 747127f643
732 changed files with 67976 additions and 23207 deletions

View File

@@ -6,7 +6,7 @@
*/
/**
* Implementation of hook_requirements().
* Implements hook_requirements().
*/
function jquery_update_requirements($phase) {
$requirements = array();
@@ -18,7 +18,7 @@ function jquery_update_requirements($phase) {
$requirements['jquery_update'] = array(
'title' => $t('jQuery Update'),
'severity' => REQUIREMENT_OK,
'value' => t('jQuery %jquery and jQuery UI %ui', array('%jquery' => $jquery['version'], '%ui' => $ui['version'])),
'value' => t('jQuery %jquery (<a href="@link">configure</a>) and jQuery UI %ui', array('%jquery' => $jquery['version'], '%ui' => $ui['version'], '@link' => url('admin/config/development/jquery_update'))),
);
}
@@ -26,11 +26,13 @@ function jquery_update_requirements($phase) {
}
/**
* Implementation of hook_uninstall().
* Implements hook_uninstall().
*/
function jquery_update_uninstall() {
variable_del('jquery_update_compression_type');
variable_del('jquery_update_jquery_version');
variable_del('jquery_update_jquery_admin_version');
variable_del('jquery_update_jquery_cdn');
}
/**