diff --git a/includes/common.inc b/includes/common.inc index 8fce947ddfef9b41e36fe126136553cfcbe4589a..82f7e4300d7f3d1591da00ba127740152fe54360 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -1426,8 +1426,8 @@ function drupal_get_js($scope = 'header', $javascript = NULL) { } break; default: - foreach ($data as $path => $flags) { - $output .= '<script type="text/javascript"'. ($info['defer'] ? ' defer="defer"' : '') .' src="'. check_url(base_path() . $path) . ($flags['cache'] ? '' : '?'. time()) ."\"></script>\n"; + foreach ($data as $path => $info) { + $output .= '<script type="text/javascript"'. ($info['defer'] ? ' defer="defer"' : '') .' src="'. check_url(base_path() . $path) . ($info['cache'] ? '' : '?'. time()) ."\"></script>\n"; } } }