aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2013-05-08 19:35:59 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2013-05-08 19:35:59 -0400
commit6821a27ccf90090198b76f929c2dba4cd9c3e4c1 (patch)
treef7a0b6d82777cf69c7fc0fe8519a7763ab83f87a /phpBB/includes
parent88d4964f0ee56f3c9dadc67c8e62b055568e6898 (diff)
parent153be855ca8fdee9549be9f51f940a385a0b4e03 (diff)
downloadforums-6821a27ccf90090198b76f929c2dba4cd9c3e4c1.tar
forums-6821a27ccf90090198b76f929c2dba4cd9c3e4c1.tar.gz
forums-6821a27ccf90090198b76f929c2dba4cd9c3e4c1.tar.bz2
forums-6821a27ccf90090198b76f929c2dba4cd9c3e4c1.tar.xz
forums-6821a27ccf90090198b76f929c2dba4cd9c3e4c1.zip
Merge PR #1294 branch 'VSEphpbb/ticket/10155' into develop
# By Matt Friedman # Via Matt Friedman * VSEphpbb/ticket/10155: [ticket/10155] Update copyright in new migration file to 2013 [ticket/10155] Make effectively installed test more specific [ticket/10155] Use more descriptive title for migration file [ticket/10155] Use new migration file for jQuery config update [ticket/10155] Update jQuery to 1.8.3
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/db/migration/data/310/jquery_update.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/phpBB/includes/db/migration/data/310/jquery_update.php b/phpBB/includes/db/migration/data/310/jquery_update.php
new file mode 100644
index 0000000000..dc49f74fcb
--- /dev/null
+++ b/phpBB/includes/db/migration/data/310/jquery_update.php
@@ -0,0 +1,31 @@
+<?php
+/**
+*
+* @package migration
+* @copyright (c) 2013 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2
+*
+*/
+
+class phpbb_db_migration_data_310_jquery_update extends phpbb_db_migration
+{
+ public function effectively_installed()
+ {
+ return $this->config['load_jquery_url'] !== '//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js';
+ }
+
+ static public function depends_on()
+ {
+ return array(
+ 'phpbb_db_migration_data_310_dev',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('load_jquery_url', '//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js')),
+ );
+ }
+
+}