From 37b33e6b6772d5ed6ad6e538754a2a82b37441b1 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Thu, 13 Dec 2018 21:22:58 +0100 Subject: [PATCH] [security/229] Adjust effectively_installed on jquery update migration SECURITY-229 --- phpBB/phpbb/db/migration/data/v32x/jquery_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/db/migration/data/v32x/jquery_update.php b/phpBB/phpbb/db/migration/data/v32x/jquery_update.php index f35cac7a0d..6dc58ec638 100644 --- a/phpBB/phpbb/db/migration/data/v32x/jquery_update.php +++ b/phpBB/phpbb/db/migration/data/v32x/jquery_update.php @@ -17,7 +17,7 @@ class jquery_update extends \phpbb\db\migration\migration { public function effectively_installed() { - return $this->config['load_jquery_url'] !== '//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js'; + return $this->config['load_jquery_url'] === '//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js'; } static public function depends_on()