combine_script recognizes path starting with // as absolute urls

git-svn-id: http://piwigo.org/svn/trunk@23184 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2013-06-13 18:26:18 +00:00
parent 83cbcd3430
commit 25b6955cef
+1 -1
View File
@@ -957,7 +957,7 @@ final class Script
function is_remote()
{
return url_is_remote( $this->path );
return url_is_remote( $this->path ) || strncmp($this->path, '//', 2)==0;
}
}