Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/reader
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-05-12 18:20:06 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-05-12 18:20:06 +0400
commitb85d9256e0cd12bf4f994165569289303e2441db (patch)
tree3d3d5dce97f15095ec5b3bfc7a72eaf01d7c9857 /reader
parentd272ed78a36fe65912ce8d11494d837ada40f73c (diff)
remove legacy aka deprecated code: OC_Filesystem
Diffstat (limited to 'reader')
-rwxr-xr-xreader/lib/thumbnail.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/reader/lib/thumbnail.php b/reader/lib/thumbnail.php
index 32cad8505..cfb133a35 100755
--- a/reader/lib/thumbnail.php
+++ b/reader/lib/thumbnail.php
@@ -15,7 +15,7 @@
if (file_exists($thumb_path.$path)) {
return new \OC_Image($thumb_path.$path);
}
- if (!\OC_Filesystem::file_exists($path)) {
+ if (!\OC\Files\Filesystem::file_exists($path)) {
return false;
}
}