Ver Fonte

ZF-11515
Zend_Search
Fixed typo: ISO8859-1 -> ISO-8859-1


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@24166 44c647ce-9c0f-0410-b52a-842ac1e357ba

adamlundrigan há 14 anos atrás
pai
commit
ae20c74032
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      library/Zend/Search/Lucene/Field.php

+ 1 - 1
library/Zend/Search/Lucene/Field.php

@@ -219,7 +219,7 @@ class Zend_Search_Lucene_Field
                 return $this->value;
         } else {
 
-            return (PHP_OS != 'AIX') ? iconv($this->encoding, 'UTF-8', $this->value) : iconv('ISO8859-1', 'UTF-8', $this->value);
+            return (PHP_OS != 'AIX') ? iconv($this->encoding, 'UTF-8', $this->value) : iconv('ISO-8859-1', 'UTF-8', $this->value);
         }
     }
 }