BUGFIX File::getAbsoluteURL() should return a URL, not a filesystem path (from r109062)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112770 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2010-10-19 00:52:21 +00:00
parent 58d6cbf81a
commit 46f1994da4

View File

@ -518,7 +518,7 @@ class File extends DataObject {
* @return string
*/
function getAbsoluteURL() {
return $this->getFullPath();
return Director::absoluteBaseURL() . $this->getURL();
}
/**