summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-09-29 16:06:11 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-09-29 16:06:11 +0000
commita6a4073b808b6af1b6e60f7a82666a1ccfd405c2 (patch)
tree445513f8c07e4f6577a85c61c67884b3da2c00bf /modules
parent80fc4d8e59e2b229ad2b372568487b64c443a849 (diff)
downloadbrdo-a6a4073b808b6af1b6e60f7a82666a1ccfd405c2.tar.gz
brdo-a6a4073b808b6af1b6e60f7a82666a1ccfd405c2.tar.bz2
#925100 by mfer: Fix definition of preprocess on jQuery library.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.module6
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.