summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBartek Przybylski <bart.p.pl@gmail.com>2012-06-10 17:25:19 +0200
committerBartek Przybylski <bart.p.pl@gmail.com>2012-06-10 17:25:50 +0200
commitc11f6cc3f9121fbb337c248807b802c72b18087b (patch)
tree36cdbad6070e3d3fc2361fb12441a46304be4a20 /apps
parent76f20eb57c4089b51ee506a000a21ab95727da43 (diff)
downloadnextcloud-server-c11f6cc3f9121fbb337c248807b802c72b18087b.tar.gz
nextcloud-server-c11f6cc3f9121fbb337c248807b802c72b18087b.zip
fix variable name and undefined index notice
Diffstat (limited to 'apps')
-rw-r--r--apps/gallery/templates/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gallery/templates/index.php b/apps/gallery/templates/index.php
index e761cb54725..fd83490d60c 100644
--- a/apps/gallery/templates/index.php
+++ b/apps/gallery/templates/index.php
@@ -82,7 +82,7 @@ sort($images);
$arr = array();
$tl = new \OC\Pictures\TilesLine();
$ts = new \OC\Pictures\TileStack(array(), '');
-$previous_element = $images[0];
+$previous_element = @$images[0];
for($i = 0; $i < count($images); $i++) {
$prev_dir_arr = explode('/', $previous_element);
$dir_arr = explode('/', $images[$i]);