--- print.pages.inc 21 May 2008 09:02:09 -0000 1.9.2.6
+++ print.pages.inc 28 May 2008 20:56:02 -0000
@@ -138,6 +138,10 @@
$css_file = base_path() . drupal_get_path('module', 'print') ."/print.css";
}
$print["css"] = "\n";
+ // Add CCK's CSS file to properly display the fields
+ if (module_exists('content')) {
+ $print["css"] .= "\n";
+ }
$print["sendtoprinter"] = $print_settings['sendtoprinter'] ? " onload=\"window.print();\"" : "";