aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration/data
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2014-03-31 21:09:47 -0700
committerMatt Friedman <maf675@gmail.com>2014-03-31 21:09:47 -0700
commit2b77dcfca6c0cb208237fc64f775cb1f4c3ea0d4 (patch)
tree83e0ab6b0000cea2fa6d330c62bf2b4eca6e7680 /phpBB/phpbb/db/migration/data
parent7fb65f20dac31b574506a0078614a0bc60cb4604 (diff)
downloadforums-2b77dcfca6c0cb208237fc64f775cb1f4c3ea0d4.tar
forums-2b77dcfca6c0cb208237fc64f775cb1f4c3ea0d4.tar.gz
forums-2b77dcfca6c0cb208237fc64f775cb1f4c3ea0d4.tar.bz2
forums-2b77dcfca6c0cb208237fc64f775cb1f4c3ea0d4.tar.xz
forums-2b77dcfca6c0cb208237fc64f775cb1f4c3ea0d4.zip
[ticket/12337] Update jQuery to version 1.11.0
PHPBB3-12337
Diffstat (limited to 'phpBB/phpbb/db/migration/data')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/jquery_update2.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/jquery_update2.php b/phpBB/phpbb/db/migration/data/v310/jquery_update2.php
new file mode 100644
index 0000000000..87d8c0d14d
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v310/jquery_update2.php
@@ -0,0 +1,28 @@
+<?php
+/**
+*
+* @package migration
+* @copyright (c) 2014 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2
+*
+*/
+
+namespace phpbb\db\migration\data\v310;
+
+class jquery_update2 extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v310\jquery_update',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('load_jquery_url', '//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js')),
+ );
+ }
+
+}