From 3d0939f7dbdc18770f7d41bc8564fad3fc33ef8a 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. git-svn-id: svn://10.0.0.236/trunk@24343 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/rdf/base/src/rdfutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/rdf/base/src/rdfutil.cpp b/mozilla/rdf/base/src/rdfutil.cpp index 79d4e6b88c8..13532c04973 100644 --- a/mozilla/rdf/base/src/rdfutil.cpp +++ b/mozilla/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();