CRM-15883 - Suppressing Stationery path field from PDF Letter action since it is...
authorDave Greenberg <dave@civicrm.org>
Thu, 29 Jan 2015 22:31:15 +0000 (14:31 -0800)
committerDave Greenberg <dave@civicrm.org>
Thu, 29 Jan 2015 22:31:15 +0000 (14:31 -0800)
----------------------------------------
* CRM-15883: Need to remove inoperative "stationery" box from page format when using Print PDF letter?
  https://issues.civicrm.org/jira/browse/CRM-15883

CRM/Contact/Form/Task/PDFLetterCommon.php

index f31d022407244643c18cd923c2da67b226649e70..740b689cb4b102a0565467dd4a0e1699a7f0887c 100644 (file)
@@ -156,17 +156,17 @@ class CRM_Contact_Form_Task_PDFLetterCommon {
     );
 
     $config = CRM_Core_Config::singleton();
-    /* CRM-15883 Suppressing Stationery path field until we switch from DOMPDF to a library that supports it.    
+    /** CRM-15883 Suppressing Stationery path field until we switch from DOMPDF to a library that supports it.
     if ($config->wkhtmltopdfPath == FALSE) {
-      $form->add(
-        'text',
-        'stationery',
-        ts('Stationery (relative path to PDF you wish to use as the background)'),
-        array('size' => 25, 'maxlength' => 900, 'onkeyup' => "showUpdateFormatChkBox();"),
-        FALSE
-      );
+    $form->add(
+    'text',
+    'stationery',
+    ts('Stationery (relative path to PDF you wish to use as the background)'),
+    array('size' => 25, 'maxlength' => 900, 'onkeyup' => "showUpdateFormatChkBox();"),
+    FALSE
+    );
     }
-    */
+     */
     $form->add('checkbox', 'bind_format', ts('Always use this Page Format with the selected Template'));
     $form->add('checkbox', 'update_format', ts('Update Page Format (this will affect all templates that use this format)'));