You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2009/11/22 23:33:09 UTC

svn commit: r883163 - /directory/shared/branches/shared-schema/ldap/src/main/java/org/apache/directory/shared/ldap/schema/DescriptionUtils.java

Author: elecharny
Date: Sun Nov 22 22:33:09 2009
New Revision: 883163

URL: http://svn.apache.org/viewvc?rev=883163&view=rev
Log:
Fixed the NO-USER-MODIFIABLE rendering, the wrong value was shown

Modified:
    directory/shared/branches/shared-schema/ldap/src/main/java/org/apache/directory/shared/ldap/schema/DescriptionUtils.java

Modified: directory/shared/branches/shared-schema/ldap/src/main/java/org/apache/directory/shared/ldap/schema/DescriptionUtils.java
URL: http://svn.apache.org/viewvc/directory/shared/branches/shared-schema/ldap/src/main/java/org/apache/directory/shared/ldap/schema/DescriptionUtils.java?rev=883163&r1=883162&r2=883163&view=diff
==============================================================================
--- directory/shared/branches/shared-schema/ldap/src/main/java/org/apache/directory/shared/ldap/schema/DescriptionUtils.java (original)
+++ directory/shared/branches/shared-schema/ldap/src/main/java/org/apache/directory/shared/ldap/schema/DescriptionUtils.java Sun Nov 22 22:33:09 2009
@@ -153,7 +153,7 @@
             buf.append( " COLLECTIVE\n" );
         }
 
-        if ( attributeType.isUserModifiable() )
+        if ( !attributeType.isUserModifiable() )
         {
             buf.append( " NO-USER-MODIFICATION\n" );
         }