Author: doogie
Date: Thu Jul 22 18:17:22 2010
New Revision: 966780
URL:
http://svn.apache.org/viewvc?rev=966780&view=revLog:
Fix typo introducted in last commit.
Modified:
ofbiz/branches/release09.04/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java
Modified: ofbiz/branches/release09.04/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release09.04/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java?rev=966780&r1=966779&r2=966780&view=diff==============================================================================
--- ofbiz/branches/release09.04/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java (original)
+++ ofbiz/branches/release09.04/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java Thu Jul 22 18:17:22 2010
@@ -128,7 +128,7 @@ public class WebToolsServices {
// #############################
// The filename to parse is prepared
// #############################
- if (fmFileName != null && fmFileName.length() > 0 && filename != null && filename.length() > 0) {
+ if (fmfilename != null && fmfilename.length() > 0 && filename != null && filename.length() > 0) {
try {
url = isUrl?FlexibleLocation.resolveLocation(filename):UtilURL.fromFilename(filename);
InputStream is = url.openStream();
@@ -145,7 +145,7 @@ public class WebToolsServices {
// #############################
// The text to parse is prepared
// #############################
- if (fmFileName != null && fmFileName.length() > 0 && fulltext != null && fulltext.length() > 0) {
+ if (fmfilename != null && fmfilename.length() > 0 && fulltext != null && fulltext.length() > 0) {
StringReader sr = new StringReader(fulltext);
ins = new InputSource(sr);
}