From abf87b63c91abbf7927e8074293ed1b83c49f72d Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 28 Jul 2016 10:03:49 +0200 Subject: [PATCH] fix old class-name egw_vfs --> Vfs --- filemanager/test.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/filemanager/test.php b/filemanager/test.php index a4eaed786f..1423b9914e 100644 --- a/filemanager/test.php +++ b/filemanager/test.php @@ -42,8 +42,8 @@ if (isset($path) && !empty($path)) } echo "\n"; - echo "

egw_vfs::propfind('$path')=".array2string(Vfs::propfind($path))."

\n"; - echo "

egw_vfs::resolve_url('$path')=".array2string(Vfs::resolve_url($path))."

\n"; + echo "

Vfs::propfind('$path')=".array2string(Vfs::propfind($path))."

\n"; + echo "

Vfs::resolve_url('$path')=".array2string(Vfs::resolve_url($path))."

\n"; $is_dir = Vfs::is_dir($path); echo "

is_dir('$path')=".array2string($is_dir)."

\n"; @@ -82,8 +82,8 @@ if (isset($path) && !empty($path)) echo "

".array2string($stat)."

\n"; } - echo "

egw_vfs::is_readable('$path')=".array2string(Vfs::is_readable($path))."

\n"; - echo "

egw_vfs::is_writable('$path')=".array2string(Vfs::is_writable($path))."

\n"; + echo "

Vfs::is_readable('$path')=".array2string(Vfs::is_readable($path))."

\n"; + echo "

Vfs::is_writable('$path')=".array2string(Vfs::is_writable($path))."

\n"; echo "

is_link('$path')=".array2string(Vfs::is_link($path))."

\n"; echo "

readlink('$path')=".array2string(Vfs::readlink($path))."

\n"; @@ -101,7 +101,7 @@ if (isset($path) && !empty($path)) } if (!$is_dir && $stat) { - echo "

egw_vfs::mime_content_type('$path')=".array2string(Vfs::mime_content_type($path))."

\n"; + echo "

Vfs::mime_content_type('$path')=".array2string(Vfs::mime_content_type($path))."

\n"; echo "

filesize(Vfs::PREFIX.'$path')=".array2string(filesize(Vfs::PREFIX.$path))."

\n"; echo "

bytes(file_get_contents(Vfs::PREFIX.'$path'))=".array2string(bytes(file_get_contents(Vfs::PREFIX.$path)))."

\n"; }