I switched over to 7.x-2.x-dev so I could have the PullQuote button integrated into my CKEditor, and noticed the css doesn't load anymore. Upon examining the code I found a slight bug. In pullquote.module, starting at line 76:

    $path = drupal_get_path('module', 'pullquote');
    $css_file = variable_get('pullquote_css', 'FALSE');
    if (!$css_file) {
      $css_file = $path . '/css/pullquote_style_1.css';
    }

$css_file is not evaluating to false (but to 'FALSE'), so the css file is never loaded. I changed that line to:

    $css_file = variable_get('pullquote_css', false);

and that fixed it.

Comments

lliss’s picture

Status: Active » Fixed

Thanks. I did fix this. Latest stable and dev should be fine. Should be another minor point release in the next week or so.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.