Skip to content
Snippets Groups Projects
Commit 2b6b5269 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #324 from owncloud/fix_image

fix the broken image path on the apps page
parents 8396c047 f799e48f
No related branches found
No related tags found
No related merge requests found
......@@ -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'];
}
......
......@@ -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);
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment