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
Родитель 77d16a8b1e
Коммит 07b1eaa48a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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