diff options
author | Matt Friedman <maf675@gmail.com> | 2013-03-14 10:45:17 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2013-03-14 10:45:17 -0700 |
commit | a38a92424ddf00383c17a6dffffe522065e25c9f (patch) | |
tree | 399fb0e807a8d0dd617bb67b85446600a3ee786b /phpBB/includes | |
parent | d4ee7718b9505dc6e9b3889a6a3218714c7b8e5a (diff) | |
download | forums-a38a92424ddf00383c17a6dffffe522065e25c9f.tar forums-a38a92424ddf00383c17a6dffffe522065e25c9f.tar.gz forums-a38a92424ddf00383c17a6dffffe522065e25c9f.tar.bz2 forums-a38a92424ddf00383c17a6dffffe522065e25c9f.tar.xz forums-a38a92424ddf00383c17a6dffffe522065e25c9f.zip |
[ticket/10155] Update jQuery to 1.8.3
Currently included jQuery is old by now, v1.6.2. We should update to
1.8.3. This allows us to take advantage of the latest form of jQuery
event delegation ($.on). I don't think it wise to update to jQuery
1.9.x yet, as many 3rd party scripts still need to be updated to cope
with its deprecated features ($.browser). Therefor, 1.8.3 is the latest
and most widely compatible stable version right now.
PHPBB3-10155
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/db/migration/data/310/dev.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/migration/data/310/dev.php b/phpBB/includes/db/migration/data/310/dev.php index 13b36bbf30..982dc9662e 100644 --- a/phpBB/includes/db/migration/data/310/dev.php +++ b/phpBB/includes/db/migration/data/310/dev.php @@ -91,7 +91,7 @@ class phpbb_db_migration_data_310_dev extends phpbb_db_migration array('config.add', array('fulltext_sphinx_indexer_mem_limit', 512)), array('config.add', array('load_jquery_cdn', 0)), - array('config.add', array('load_jquery_url', '//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js')), + array('config.add', array('load_jquery_url', '//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js')), array('config.add', array('use_system_cron', 0)), |