diff options
author | Jan-Christoph Borchardt <jan@unhosted.org> | 2011-10-07 16:18:47 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <jan@unhosted.org> | 2011-10-07 16:18:47 +0200 |
commit | fa72f1c3cc0f2767be68717c6b0fb8aa3143cd34 (patch) | |
tree | 1fdd0da18f1d33438e837e96187387baaddb8f73 /apps/gallery | |
parent | 0aaa1fb64ef536fab842a9e96db7f29d2ed17419 (diff) | |
download | nextcloud-server-fa72f1c3cc0f2767be68717c6b0fb8aa3143cd34.tar.gz nextcloud-server-fa72f1c3cc0f2767be68717c6b0fb8aa3143cd34.zip |
some icon corrections
Diffstat (limited to 'apps/gallery')
-rw-r--r-- | apps/gallery/appinfo/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gallery/appinfo/app.php b/apps/gallery/appinfo/app.php index 5760bb149d8..8f855c470e5 100644 --- a/apps/gallery/appinfo/app.php +++ b/apps/gallery/appinfo/app.php @@ -8,7 +8,7 @@ OC_App::addNavigationEntry( array( 'id' => 'gallery_index', 'order' => 20, 'href' => OC_Helper::linkTo('gallery', 'index.php'), - 'icon' => OC_Helper::linkTo('', 'core/img/filetypes/image.png'), + 'icon' => OC_Helper::imagePath('core', 'places/picture.svg'), 'name' => 'Gallery')); class OC_GallerySearchProvider extends OC_Search_Provider{ @@ -17,7 +17,7 @@ OC_App::addNavigationEntry( array( $result = $stmt->execute(array(OC_User::getUser(),'%'.$query.'%')); $results=array(); while($row=$result->fetchRow()){ - $results[]=new OC_Search_Result($row['album_name'],'',OC_Helper::linkTo( 'apps/gallery', 'index.php?view='.$row['album_name']),'Galleries'); + $results[]=new OC_Search_Result($row['album_name'],'',OC_Helper::linkTo('apps/gallery', 'index.php?view='.$row['album_name']),'Galleries'); } return $results; } |