Merge pull request #324 from owncloud/fix_image

fix the broken image path on the apps page
This commit is contained in:
Thomas Müller 2012-11-08 04:44:14 -08:00
commit 2b6b5269e1
3 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ if(is_array($catagoryNames)) {
if(!$local) {
if($app['preview']=='') {
$pre='trans.png';
$pre=OC_Helper::imagePath('settings','trans.png');
} else {
$pre=$app['preview'];
}

View file

@ -77,7 +77,7 @@ foreach ( $installedApps as $app ) {
}
$info['preview'] = 'trans.png';
$info['preview'] = OC_Helper::imagePath('settings','trans.png');
$info['version'] = OC_App::getAppVersion($app);

View file

Before

Width:  |  Height:  |  Size: 185 B

After

Width:  |  Height:  |  Size: 185 B