details: https://code.openbravo.com/erp/devel/pi/rev/e398c925655e
changeset: 16579:e398c925655e
user: Guillermo Álvarez de Eulate <guillermo.alvarez <at> openbravo.com>
date: Fri May 18 15:54:13 2012 +0200
summary: Related to issue 15247: 'import' statement added and function call
corrected
diffstat:
src/org/openbravo/erpCommon/ad_forms/InstancePurpose.java | 3 ++-
src/org/openbravo/erpCommon/ad_process/TestHeartbeat.java | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diffs (40 lines):
diff -r 20df7cdc3147 -r e398c925655e
src/org/openbravo/erpCommon/ad_forms/InstancePurpose.java
--- a/src/org/openbravo/erpCommon/ad_forms/InstancePurpose.java Fri May 18
14:45:01 2012 +0200
+++ b/src/org/openbravo/erpCommon/ad_forms/InstancePurpose.java Fri May 18
15:54:13 2012 +0200
@@ -27,6 +27,7 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
+import org.apache.commons.lang.StringEscapeUtils;
import org.openbravo.base.filter.IsIDFilter;
import org.openbravo.base.filter.ValueListFilter;
import org.openbravo.base.secureApp.HttpSecureAppServlet;
@@ -96,7 +97,7 @@
Form instanceActivationForm = OBDal.getInstance().get(Form.class,
instanceActivationId);
if (instanceActivationForm != null) {
newTabTitle = instanceActivationForm.getIdentifier();
- newTabTitle =
org.apache.commons.lang.StringEscapeUtils.escapeHtml(newTabTitle);
+ newTabTitle = StringEscapeUtils.escapeHtml(newTabTitle);
} else {
newTabTitle = "Instance Activation";
}
diff -r 20df7cdc3147 -r e398c925655e
src/org/openbravo/erpCommon/ad_process/TestHeartbeat.java
--- a/src/org/openbravo/erpCommon/ad_process/TestHeartbeat.java Fri May 18
14:45:01 2012 +0200
+++ b/src/org/openbravo/erpCommon/ad_process/TestHeartbeat.java Fri May 18
15:54:13 2012 +0200
@@ -31,6 +31,7 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
+import org.apache.commons.lang.StringEscapeUtils;
import org.hibernate.criterion.Restrictions;
import org.openbravo.base.filter.IsIDFilter;
import org.openbravo.base.filter.ValueListFilter;
@@ -287,7 +288,7 @@
Window heartBeatConf_win = OBDal.getInstance().get(Window.class,
heartBeatConf_win_id);
if (heartBeatConf_win != null) {
newTabTitle = heartBeatConf_win.getIdentifier();
- newTabTitle =
org.apache.commons.lang.StringEscapeUtils.escapeHtml(newTabTitle);
+ newTabTitle = StringEscapeUtils.escapeHtml(newTabTitle);
} else {
newTabTitle = "Heartbeat Configuration";
}
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Openbravo-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-commits