From 07b1eaa48acd3a14da3ed8ab0211405e9ba0cdf5 Mon Sep 17 00:00:00 2001 From: "putterman%netscape.com" Date: Thu, 18 Mar 1999 21:43:00 +0000 Subject: [PATCH] Increase the length the url can be before the document file name is prepended to it. --- rdf/base/src/rdfutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdf/base/src/rdfutil.cpp b/rdf/base/src/rdfutil.cpp index 79d4e6b88c8..13532c04973 100644 --- a/rdf/base/src/rdfutil.cpp +++ b/rdf/base/src/rdfutil.cpp @@ -574,7 +574,7 @@ PR_EXTERN(nsresult) rdf_PossiblyMakeAbsolute(const nsString& aContextURI, nsString& aURI) { PRInt32 index = aURI.Find(':'); - if (index > 0 && index < 10 /* XXX */) + if (index > 0 && index < 25 /* XXX */) return NS_OK; PRUnichar last = aContextURI.Last();