diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-02-19 12:24:51 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-02-19 12:24:51 +0100 |
commit | 7bfbfe6562a7dbcecdc05b60214a0da83760c4a3 (patch) | |
tree | 4a7fa00e09e277d06729e915d73d69e4f80cdb70 /apps/files_trashbin | |
parent | f45b268b93e609f5ee99361235af48c9e45f325d (diff) | |
download | nextcloud-server-7bfbfe6562a7dbcecdc05b60214a0da83760c4a3.tar.gz nextcloud-server-7bfbfe6562a7dbcecdc05b60214a0da83760c4a3.zip |
initialize $result
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/index.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 5d6b5d94e5c..d0b3030dbf8 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -16,6 +16,7 @@ OCP\Util::addScript('files', 'filelist'); $dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : ''; +$result = array(); if ($dir) { $dirlisting = true; $view = new \OC_FilesystemView('/'.\OCP\User::getUser().'/files_trashbin');
|