diff options
author | Matt Friedman <maf675@gmail.com> | 2013-03-22 11:22:25 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2013-03-22 11:22:25 -0700 |
commit | 73d6855edf2f7a72a2f4836e7cce8f94e34f5502 (patch) | |
tree | c81bbc009440e87074ebf0507d9ca570300e2ecc | |
parent | ac26be98c69094173c90acc49d208f751b93b7df (diff) | |
download | forums-73d6855edf2f7a72a2f4836e7cce8f94e34f5502.tar forums-73d6855edf2f7a72a2f4836e7cce8f94e34f5502.tar.gz forums-73d6855edf2f7a72a2f4836e7cce8f94e34f5502.tar.bz2 forums-73d6855edf2f7a72a2f4836e7cce8f94e34f5502.tar.xz forums-73d6855edf2f7a72a2f4836e7cce8f94e34f5502.zip |
[ticket/10155] Make effectively installed test more specific
PHPBB3-10155
-rw-r--r-- | phpBB/includes/db/migration/data/310/jquery_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/migration/data/310/jquery_update.php b/phpBB/includes/db/migration/data/310/jquery_update.php index ac6cf2666a..bb0c48550a 100644 --- a/phpBB/includes/db/migration/data/310/jquery_update.php +++ b/phpBB/includes/db/migration/data/310/jquery_update.php @@ -11,7 +11,7 @@ class phpbb_db_migration_data_310_jquery_update extends phpbb_db_migration { public function effectively_installed() { - return !isset($this->config['load_jquery_url']); + return $this->config['load_jquery_url'] !== '//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'; } static public function depends_on() |