You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by fm...@apache.org on 2013/02/27 15:38:31 UTC

svn commit: r1450787 - /syncope/trunk/console/src/main/java/org/apache/syncope/console/wicket/markup/html/form/FieldPanel.java

Author: fmartelli
Date: Wed Feb 27 14:38:30 2013
New Revision: 1450787

URL: http://svn.apache.org/r1450787
Log:
Fixes SYNCOPE-318

Modified:
    syncope/trunk/console/src/main/java/org/apache/syncope/console/wicket/markup/html/form/FieldPanel.java

Modified: syncope/trunk/console/src/main/java/org/apache/syncope/console/wicket/markup/html/form/FieldPanel.java
URL: http://svn.apache.org/viewvc/syncope/trunk/console/src/main/java/org/apache/syncope/console/wicket/markup/html/form/FieldPanel.java?rev=1450787&r1=1450786&r2=1450787&view=diff
==============================================================================
--- syncope/trunk/console/src/main/java/org/apache/syncope/console/wicket/markup/html/form/FieldPanel.java (original)
+++ syncope/trunk/console/src/main/java/org/apache/syncope/console/wicket/markup/html/form/FieldPanel.java Wed Feb 27 14:38:30 2013
@@ -59,6 +59,7 @@ public abstract class FieldPanel<T exten
     }
 
     public FieldPanel setTitle(final String title) {
+        this.title = title;
         field.add(AttributeModifier.replace("title", title != null
                 ? title
                 : ""));