There's a bug on line 124 of quicktags.module
drupal_set_html_head(drupal_add_css($stylesheet));
This causes the word 'Array' on the header of my node pages. It should be just
drupal_add_css($stylesheet);
There's a bug on line 124 of quicktags.module
drupal_set_html_head(drupal_add_css($stylesheet));
This causes the word 'Array' on the header of my node pages. It should be just
drupal_add_css($stylesheet);
Comments
Comment #1
reikiman commentedYup, making the above change makes the 'Array Array Array' no longer be printed at the top of the page.
Comment #2
tcblack commentedI am marking this as a duplicate of http://drupal.org/node/198326 where a proper patch has been supplied.