fix the broken image path on the apps page
This commit is contained in:
parent
8396c0478e
commit
f799e48f7e
|
@ -40,7 +40,7 @@ if(is_array($catagoryNames)) {
|
||||||
|
|
||||||
if(!$local) {
|
if(!$local) {
|
||||||
if($app['preview']=='') {
|
if($app['preview']=='') {
|
||||||
$pre='trans.png';
|
$pre=OC_Helper::imagePath('settings','trans.png');
|
||||||
} else {
|
} else {
|
||||||
$pre=$app['preview'];
|
$pre=$app['preview'];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
$info['version'] = OC_App::getAppVersion($app);
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 185 B After Width: | Height: | Size: 185 B |
Loading…
Reference in New Issue