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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user