summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-04-14 12:39:52 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-04-14 12:39:52 +0000
commit45e5a30b10fa0b215644e8f670f4cdda1040cd36 (patch)
treeb04904694c3381fdf89fa0a372993cca754ebf0b /ucb
parent414f49ad9611b80f4933aee1b2ad9d49e320cb22 (diff)
INTEGRATION: CWS unopkg1 (1.9.54); FILE MERGED
2004/01/05 12:32:37 mav 1.9.54.1: #114620# the URL must be encoded
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/package/pkgdatasupplier.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/package/pkgdatasupplier.cxx b/ucb/source/ucp/package/pkgdatasupplier.cxx
index ba9da62fb9fb..368f9301f58c 100644
--- a/ucb/source/ucp/package/pkgdatasupplier.cxx
+++ b/ucb/source/ucp/package/pkgdatasupplier.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pkgdatasupplier.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: hr $ $Date: 2003-03-27 17:27:15 $
+ * last change: $Author: hr $ $Date: 2004-04-14 13:39:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -527,7 +527,7 @@ void DataSupplier::validate()
if ( nPackageUrlEnd != aURL.getLength() - 1 )
aURL += rtl::OUString::createFromAscii( "/" );
- aURL += aName;
+ aURL += PackageUri::encodeSegment( aName );
aURL += aContURL.copy( nParam );
}
else
@@ -538,7 +538,7 @@ void DataSupplier::validate()
if ( nPackageUrlEnd != aURL.getLength() - 1 )
aURL += rtl::OUString::createFromAscii( "/" );
- aURL += aName;
+ aURL += PackageUri::encodeSegment( aName );
}
return aURL;
}