You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2013/02/09 17:37:44 UTC

svn commit: r1444392 - /manifoldcf/branches/CONNECTORS-633/connectors/webcrawler/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/webcrawler/FormParseState.java

Author: kwright
Date: Sat Feb  9 16:37:44 2013
New Revision: 1444392

URL: http://svn.apache.org/r1444392
Log:
Fix the fact that bodyEscape() went away.

Modified:
    manifoldcf/branches/CONNECTORS-633/connectors/webcrawler/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/webcrawler/FormParseState.java

Modified: manifoldcf/branches/CONNECTORS-633/connectors/webcrawler/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/webcrawler/FormParseState.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-633/connectors/webcrawler/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/webcrawler/FormParseState.java?rev=1444392&r1=1444391&r2=1444392&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-633/connectors/webcrawler/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/webcrawler/FormParseState.java (original)
+++ manifoldcf/branches/CONNECTORS-633/connectors/webcrawler/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/webcrawler/FormParseState.java Sat Feb  9 16:37:44 2013
@@ -162,7 +162,7 @@ public class FormParseState extends Link
           optionMap.put("type","select");
           optionMap.put("name",selectName);
           optionMap.put("multiple",selectMultiple);
-          optionMap.put("value",bodyDecode(optionValueText.toString()));
+          optionMap.put("value",optionValueText.toString());
           optionMap.put("selected",optionSelected);
           handler.noteFormInput(optionMap);
         }