You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2012/02/01 19:46:37 UTC

svn commit: r1239258 - /chemistry/dotcmis/trunk/DotCMIS/binding/converter.cs

Author: fmui
Date: Wed Feb  1 18:46:37 2012
New Revision: 1239258

URL: http://svn.apache.org/viewvc?rev=1239258&view=rev
Log:
CMIS-497: Fixed DotCMIS extension serialization

Modified:
    chemistry/dotcmis/trunk/DotCMIS/binding/converter.cs

Modified: chemistry/dotcmis/trunk/DotCMIS/binding/converter.cs
URL: http://svn.apache.org/viewvc/chemistry/dotcmis/trunk/DotCMIS/binding/converter.cs?rev=1239258&r1=1239257&r2=1239258&view=diff
==============================================================================
--- chemistry/dotcmis/trunk/DotCMIS/binding/converter.cs (original)
+++ chemistry/dotcmis/trunk/DotCMIS/binding/converter.cs Wed Feb  1 18:46:37 2012
@@ -1866,7 +1866,7 @@ namespace DotCMIS.Binding
 
             if (element.Value != null)
             {
-                result.Value = element.Value;
+                result.InnerText = element.Value;
             }
             else if (element.Children != null)
             {