From 24f206c28e7359c50532cf346fad9be1e725fa88 Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Fri, 30 Dec 2011 15:15:16 +0900 Subject: [PATCH] Issue #1214344 by wiifm, msonnabaum: Fixed "misc/progress.js" is not being included when "Aggregate JavaScript files." is used. --- core/modules/system/system.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/system.module b/core/modules/system/system.module index ac8167632bc2..b96374ccc765 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -1121,7 +1121,7 @@ function system_library_info() { 'title' => 'Drupal progress indicator', 'version' => VERSION, 'js' => array( - 'core/misc/progress.js' => array('group' => JS_DEFAULT, 'cache' => FALSE), + 'core/misc/progress.js' => array('group' => JS_DEFAULT), ), ); -- GitLab