Closed (fixed)
Project:
P6 Helper
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
7 Apr 2012 at 03:43 UTC
Updated:
8 Apr 2012 at 04:49 UTC
Even though $type = 'module', $media = 'all', $preprocess = TRUE are set as defaults in drupal_add_css' parameters, omitting these options cause Drupal not to include module's CSS file.
temporary solution is updating
drupal_add_css(drupal_get_path('module', 'p6_helper') . '/p6_helper.css');
as
drupal_add_css(drupal_get_path('module', 'p6_helper') . '/p6_helper.css', 'module', 'all', TRUE);
Could be related, see: #235673: Changes to block caching mode not caught
Comments
Comment #1
osmanIssue is fixed with 1.1 release