mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-09 14:55:25 +02:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user