diff --git a/webform2pdf.class.inc b/webform2pdf.class.inc
index 9931f3d..6512978 100644
--- a/webform2pdf.class.inc
+++ b/webform2pdf.class.inc
@@ -57,11 +57,13 @@ class W2PDF extends TCPDF {
    * @param string $hs string to print on document header
    * @param string $hsa align string to print on document header
    */
-  public function setHeaderData($ln = array(), $ls = array(), $hs = '', $hsa = '', $background = NULL) {
+  public function setHeaderData($ln = array(), $ls = array(), $hs = '', $hsa = '', $tc=array(0,0,0), $lc=array(0,0,0), $background = NULL) {
     $this->header_logo = $ln;
     $this->header_logo_size = $ls;
     $this->header_string = $hs;
     $this->header_string_align = $hsa;
+    $this->header_text_color = $tc;
+    $this->header_line_color = $lc;
     $this->background = $background;
   }
 
diff --git a/webform2pdf.info b/webform2pdf.info
index 88d4011..3486461 100644
--- a/webform2pdf.info
+++ b/webform2pdf.info
@@ -8,5 +8,4 @@ dependencies[] = libraries
 configure = admin/config/content/webform2pdf
 
 ; Files that contain classes:
-files[] = includes/webform2pdf.download.inc
-files[] = includes/webform2pdf.settings.inc
+files[] = webform2pdf.class.inc
diff --git a/webform2pdf.module b/webform2pdf.module
index 5e8dda6..a2a7526 100644
--- a/webform2pdf.module
+++ b/webform2pdf.module
@@ -361,7 +361,7 @@ function _webform2pdf_pdf_header($pdf, $node, $template) {
   $header_msg = nl2br( _webform_filter_values($template['h_txt'], $node, NULL, NULL, FALSE) );
 
   // set header data
-  $pdf->setHeaderData($logo, $size, $header_msg, $template['h_txt_align'], $background);
+  $pdf->setHeaderData($logo, $size, $header_msg, $template['h_txt_align'], array(), array(), $background);
   return $pdf;
 } // function _webform2pdf_pdf_header()
 
