replace spaces in download link without encoding entire URL

This commit is contained in:
Myles McNamara 2014-02-28 11:15:49 -05:00
parent dd32091016
commit 4ab7f58745
1 changed files with 2 additions and 0 deletions

View File

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