Merge pull request #315 from dawnbreak/master

Fix call to asset icons in RedBrowser.
This commit is contained in:
friendica 2014-02-16 07:58:46 +11:00
commit 66ecd3f8cd

View File

@ -1064,5 +1064,15 @@ class RedBrowser extends DAV\Browser\Plugin {
}
/**
* This method takes a path/name of an asset and turns it into url
* suiteable for http access.
*
* @param string $assetName
* @return string
*/
protected function getAssetUrl($assetName) {
return '/cloud/?sabreAction=asset&assetName=' . urlencode($assetName);
}
}