Increase the length the url can be before the document file name is prepended to it.

This commit is contained in:
putterman%netscape.com 1999-03-18 21:43:00 +00:00
parent 1f17599f2e
commit 93a88864fd

View File

@ -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();