Просмотр исходного кода

Backed out r24166; Jumped the gun :(

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@24169 44c647ce-9c0f-0410-b52a-842ac1e357ba
adamlundrigan 14 лет назад
Родитель
Сommit
a5da984e2b
1 измененных файлов с 1 добавлено и 1 удалено
  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('ISO-8859-1', 'UTF-8', $this->value);
+            return (PHP_OS != 'AIX') ? iconv($this->encoding, 'UTF-8', $this->value) : iconv('ISO8859-1', 'UTF-8', $this->value);
         }
     }
 }