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
This commit is contained in:
putterman%netscape.com
1999-03-18 21:43:00 +00:00
parent 6e75a0bbb7
commit 3d0939f7db

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