diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-29 16:06:11 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-09-29 16:06:11 +0000 |
commit | a6a4073b808b6af1b6e60f7a82666a1ccfd405c2 (patch) | |
tree | 445513f8c07e4f6577a85c61c67884b3da2c00bf /modules/system | |
parent | 80fc4d8e59e2b229ad2b372568487b64c443a849 (diff) | |
download | brdo-a6a4073b808b6af1b6e60f7a82666a1ccfd405c2.tar.gz brdo-a6a4073b808b6af1b6e60f7a82666a1ccfd405c2.tar.bz2 |
#925100 by mfer: Fix definition of preprocess on jQuery library.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 32e6e3859..73b7c67a7 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1069,9 +1069,8 @@ function system_library() { 'website' => 'http://jquery.com', 'version' => '1.4.2', 'js' => array( - 'misc/jquery.js' => array('weight' => JS_LIBRARY - 20), + 'misc/jquery.js' => array('weight' => JS_LIBRARY - 20, 'preprocess' => TRUE), ), - 'preprocess' => TRUE, ); // jQuery Once. @@ -1080,9 +1079,8 @@ function system_library() { 'website' => 'http://plugins.jquery.com/project/once', 'version' => '1.2', 'js' => array( - 'misc/jquery.once.js' => array('weight' => JS_LIBRARY - 19), + 'misc/jquery.once.js' => array('weight' => JS_LIBRARY - 19, 'preprocess' => TRUE), ), - 'preprocess' => TRUE, ); // jQuery Form Plugin. |