Merge pull request #7481 from tripflex/fix_downloadlink_spaces

replace spaces in download link without encoding entire URL
This commit is contained in:
Vincent Petry 2014-03-04 16:33:41 +01:00
commit 620dd4afbd
1 changed files with 2 additions and 0 deletions

View File

@ -219,6 +219,8 @@ class OC_App{
$appdata=OC_OCSClient::getApplication($app);
$download=OC_OCSClient::getApplicationDownload($app, 1);
if(isset($download['downloadlink']) and $download['downloadlink']!='') {
// Replace spaces in download link without encoding entire URL
$download['downloadlink'] = str_replace(' ', '%20', $download['downloadlink']);
$info = array('source'=>'http', 'href'=>$download['downloadlink'], 'appdata'=>$appdata);
$app=OC_Installer::installApp($info);
}