Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2008-10-31 18:02:20 +0000
committerChris Goldthorpe2008-10-31 18:02:20 +0000
commitaf5bf7a9108bc5ecc062925c1ffb9dd4b6295aa4 (patch)
treefd0186507a388eb0d70a0d1738ed2b4da8dff464 /org.eclipse.help.base/src_demo/org
parent4d0571114b100971844b45fdaaa56c865fa4b126 (diff)
downloadeclipse.platform.ua-af5bf7a9108bc5ecc062925c1ffb9dd4b6295aa4.tar.gz
eclipse.platform.ua-af5bf7a9108bc5ecc062925c1ffb9dd4b6295aa4.tar.xz
eclipse.platform.ua-af5bf7a9108bc5ecc062925c1ffb9dd4b6295aa4.zip
Bug 245441 – [Help][Search] Meta description problemsv20081103
Diffstat (limited to 'org.eclipse.help.base/src_demo/org')
-rw-r--r--org.eclipse.help.base/src_demo/org/apache/lucene/demo/html/HTMLParser.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.help.base/src_demo/org/apache/lucene/demo/html/HTMLParser.java b/org.eclipse.help.base/src_demo/org/apache/lucene/demo/html/HTMLParser.java
index 33c983b36..a89f113dd 100644
--- a/org.eclipse.help.base/src_demo/org/apache/lucene/demo/html/HTMLParser.java
+++ b/org.eclipse.help.base/src_demo/org/apache/lucene/demo/html/HTMLParser.java
@@ -292,7 +292,7 @@ InterruptedException {
if(inMetaTag && t1.image.equalsIgnoreCase("content") && t2 != //$NON-NLS-1$
null)
{
- currentMetaContent=t2.image.toLowerCase();
+ currentMetaContent=t2.image;
if(currentMetaTag != null && currentMetaContent != null) {
addMetaTag();
}

Back to the top