diff --git a/CHANGES.txt b/CHANGES.txt index 9f747ba16bf..a6010e8c1aa 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -321,6 +321,8 @@ Bug Fixes 19. SOLR-496: Cache-Control max-age changed to Long so Expires calculation won't cause overflow. (Thomas Peuss via hossman) +20. SOLR-535: Fixed typo (Tokenzied -> Tokenized) in schema.jsp (Thomas Peuss via billa) + Other Changes 1. SOLR-135: Moved common classes to org.apache.solr.common and altered the build scripts to make two jars: apache-solr-1.3.jar and diff --git a/src/webapp/web/admin/schema.jsp b/src/webapp/web/admin/schema.jsp index 45977fbaf51..da2c8f74366 100644 --- a/src/webapp/web/admin/schema.jsp +++ b/src/webapp/web/admin/schema.jsp @@ -271,7 +271,7 @@ } return p; })); - $('#mainInfo').append(solr.createNameValueText('Tokenzied', ft.tokenized)); + $('#mainInfo').append(solr.createNameValueText('Tokenized', ft.tokenized)); $('#mainInfo').append(solr.createNameValueText('Class Name', ft.className)); solr.displayAnalyzer(ft.indexAnalyzer, 'Index Analyzer');