This is an automated email from the ASF dual-hosted git repository.

doebele pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/empire-db.git


The following commit(s) were added to refs/heads/master by this push:
     new 3fc969e  EMPIREDB-306 small fix
3fc969e is described below

commit 3fc969eaad936dd332f20d954d75785d1bcdfd4f
Author: Rainer Döbele <[email protected]>
AuthorDate: Wed Oct 30 10:01:10 2019 +0100

    EMPIREDB-306
    small fix
---
 .../src/main/java/org/apache/empire/jsf2/utils/TagEncodingHelper.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/utils/TagEncodingHelper.java
 
b/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/utils/TagEncodingHelper.java
index 6c74605..6b40bea 100644
--- 
a/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/utils/TagEncodingHelper.java
+++ 
b/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/utils/TagEncodingHelper.java
@@ -443,7 +443,8 @@ public class TagEncodingHelper implements NamingContainer
 
     public String completeInputTagId(String id)
     {
-        if (StringUtils.isEmpty(id))
+        // EmptyString or AT
+        if (StringUtils.isEmpty(id) || "@".equals(id))
             return getColumnName();
         // replace placeholder
         if (id.indexOf(PH_COLUMN_NAME)>=0)

Reply via email to