diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-10-31 21:41:40 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-10-31 21:41:40 +0000 |
commit | 27afff543ba4bfad78a8c350e0344f00cf5e1cf5 (patch) | |
tree | 69fb49a64bc0a452c093372e88f06d493ee7f5e2 /modules | |
parent | e17b68cf868f17fd27b64bab5835db832a3c71bd (diff) | |
download | brdo-27afff543ba4bfad78a8c350e0344f00cf5e1cf5.tar.gz brdo-27afff543ba4bfad78a8c350e0344f00cf5e1cf5.tar.bz2 |
#944308 by bojanz: Upgrade jQuery to 1.4.3 (latest point release).
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 296c06714..972618848 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1080,7 +1080,7 @@ function system_library() { $libraries['jquery'] = array( 'title' => 'jQuery', 'website' => 'http://jquery.com', - 'version' => '1.4.2', + 'version' => '1.4.3', 'js' => array( 'misc/jquery.js' => array('group' => JS_LIBRARY, 'weight' => -20), ), @@ -2883,7 +2883,7 @@ function system_get_module_admin_tasks($module, $info) { } if ($parent = menu_link_load($admin_tasks[$duplicate_path]['plid'])) { // Append the parent item's title to the duplicated task's title. - // We use $links[$duplicate_path] in case there are triplicates. + // We use $links[$duplicate_path] in case there are triplicates. $admin_tasks[$duplicate_path]['title'] = t('@original_title (@parent_title)', array('@original_title' => $links[$duplicate_path]['title'], '@parent_title' => $parent['title'])); } } |