summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-09-06 07:43:38 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-09-06 07:43:38 +0000
commit8529af3b42a4195515bc713d7c4eba84a75afacc (patch)
treeef597781c9802999e8f83c97c9230e3a99a46716 /ucb
parent002c5d089d2c5582d28d21187c300817475ab166 (diff)
#91127# - Fixed DataSupplier::getData() again.
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/webdavdatasupplier.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav/webdavdatasupplier.cxx b/ucb/source/ucp/webdav/webdavdatasupplier.cxx
index 132d5d1e0781..54016526b3f9 100644
--- a/ucb/source/ucp/webdav/webdavdatasupplier.cxx
+++ b/ucb/source/ucp/webdav/webdavdatasupplier.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: webdavdatasupplier.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: kso $ $Date: 2001-08-29 12:28:55 $
+ * last change: $Author: kso $ $Date: 2001-09-06 08:43:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -451,6 +451,7 @@ sal_Bool DataSupplier::getData()
if ( aPath.getStr()[ aPath.getLength() - 1 ] == sal_Unicode( '/' ) )
aPath = aPath.copy( 0, aPath.getLength() - 1 );
+ aPath = NeonUri::unescape( aPath );
bool bFoundParent = false;
for ( sal_uInt32 n = 0; n < resources.size(); ++n )
@@ -466,6 +467,7 @@ sal_Bool DataSupplier::getData()
aCurrPath.getLength() - 1 ] == sal_Unicode( '/' ) )
aCurrPath = aCurrPath.copy( 0, aCurrPath.getLength() - 1 );
+ aCurrPath = NeonUri::unescape( aCurrPath );
if ( aPath == aCurrPath )
{
bFoundParent = true;