summaryrefslogtreecommitdiffstats
path: root/apps/gallery
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <jan@unhosted.org>2011-10-07 16:18:47 +0200
committerJan-Christoph Borchardt <jan@unhosted.org>2011-10-07 16:18:47 +0200
commitfa72f1c3cc0f2767be68717c6b0fb8aa3143cd34 (patch)
tree1fdd0da18f1d33438e837e96187387baaddb8f73 /apps/gallery
parent0aaa1fb64ef536fab842a9e96db7f29d2ed17419 (diff)
downloadnextcloud-server-fa72f1c3cc0f2767be68717c6b0fb8aa3143cd34.tar.gz
nextcloud-server-fa72f1c3cc0f2767be68717c6b0fb8aa3143cd34.zip
some icon corrections
Diffstat (limited to 'apps/gallery')
-rw-r--r--apps/gallery/appinfo/app.php4
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;
}