Selaa lähdekoodia

Fixed syntax error

Muhammad Adeel Nawaz 11 vuotta sitten
vanhempi
commit
b44e81e3b8
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      library/Zend/Pdf.php

+ 1 - 1
library/Zend/Pdf.php

@@ -629,7 +629,7 @@ class Zend_Pdf
         foreach ($root->AcroForm->Fields->items as $field)
         {
             /* We only support fields that are textfields and have a name */
-            if ( $field->FT && $field->FT->value == 'Tx' && && $field->T && $field->T !== null ) 
+            if ( $field->FT && $field->FT->value == 'Tx' && $field->T && $field->T !== null ) 
             {
                 $this->_formFields[$field->T->value] = $field;
             }