summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-11-10 05:23:01 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-11-10 05:23:01 +0000
commit0762f6007378a79d53951baf79cf8a5fac7a7489 (patch)
tree091cbb8ca9fb02e0f8c1eae7cc42dfc005b7eb3f /install.php
parent9020a9a20130ac2712f2a7406ee34ed9c39064d1 (diff)
downloadbrdo-0762f6007378a79d53951baf79cf8a5fac7a7489.tar.gz
brdo-0762f6007378a79d53951baf79cf8a5fac7a7489.tar.bz2
#315798 by Rob Loach, mfer, Grugnog2, and sun: Add weighting to drupal_add_js().
Diffstat (limited to 'install.php')
-rw-r--r--install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php
index caa5feb3e..3b6dd1848 100644
--- a/install.php
+++ b/install.php
@@ -726,7 +726,7 @@ function install_tasks($profile, $task) {
// Add JavaScript validation.
_user_password_dynamic_validation();
- drupal_add_js(drupal_get_path('module', 'system') . '/system.js', 'module');
+ drupal_add_js(drupal_get_path('module', 'system') . '/system.js');
// We add these strings as settings because JavaScript translation does not
// work on install time.
drupal_add_js(array('copyFieldValue' => array('edit-site-mail' => array('edit-account-mail')), 'cleanURL' => array('success' => st('Your server has been successfully tested to support this feature.'), 'failure' => st('Your system configuration does not currently support this feature. The <a href="http://drupal.org/node/15365">handbook page on Clean URLs</a> has additional troubleshooting information.'), 'testing' => st('Testing clean URLs...'))), 'setting');