Kaydet (Commit) aa68e4c5 authored tarafından Matúš Kukan's avatar Matúš Kukan

webdav: fix cherry-pick commit 7056e8ef

Change-Id: I177daf0d4e22d96167ab094a5c9d5c9cab6cf409
üst 43fc67ad
......@@ -113,14 +113,14 @@ serf_bucket_t * SerfPropFindReqProcImpl::createSerfRequestBucket( serf_request_t
thePropName );
/* <*propname* xmlns="*propns*" /> */
aBodyText += "<";
aBodyText += OUString::createFromAscii( thePropName.name );
aBodyText += " xmlnx=\"";
aBodyText += OUString::createFromAscii( thePropName.nspace );
aBodyText += "\"/>";
aBuffer.append( "<" );
aBuffer.append( thePropName.name );
aBuffer.append( " xmlnx=\"" );
aBuffer.append( thePropName.nspace );
aBuffer.append( "\"/>" );
}
aBodyText = "<prop>" + aBodyText + "</prop>";
aBuffer.append( "</prop>" );
}
else
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment