diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/window/AboutWindow.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/window/AboutWindow.java index 6c2990858b..62fd895d4c 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/window/AboutWindow.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/window/AboutWindow.java @@ -519,10 +519,9 @@ public class AboutWindow extends Window implements EventListener { w.setHeight("500px"); Textarea textbox = new Textarea(); textbox.setDynamicProperty("readonly", "true"); - textbox.setStyle("width:100%; height: 100%"); + textbox.setStyle("width:99%; height: 99%; margin: auto; display: inline-block;"); w.appendChild(textbox); - Text text = new Text(log); - textbox.appendChild(text); + textbox.setValue(log); AEnv.showCenterScreen(w); } diff --git a/org.compiere.db.postgresql.provider/src/org/compiere/db/DB_PostgreSQL.java b/org.compiere.db.postgresql.provider/src/org/compiere/db/DB_PostgreSQL.java index bd8a351ef1..b2b64c7aee 100755 --- a/org.compiere.db.postgresql.provider/src/org/compiere/db/DB_PostgreSQL.java +++ b/org.compiere.db.postgresql.provider/src/org/compiere/db/DB_PostgreSQL.java @@ -712,6 +712,7 @@ public class DB_PostgreSQL implements AdempiereDatabase } m_ds = cpds; + m_connectionURL = m_ds.getJdbcUrl(); } catch (Exception ex) {