diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-07-22 17:25:55 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-07-22 17:25:55 +0200 |
commit | cb4cf3e2f764dc2639f641167c3b438e554d546b (patch) | |
tree | d4fbd5869c41c0f0da14015b59896a9483cc34e2 /lib/public/image.php | |
parent | bc86ce00cfb94cb607c2a7895417c1846bb971ec (diff) | |
download | nextcloud-server-cb4cf3e2f764dc2639f641167c3b438e554d546b.tar.gz nextcloud-server-cb4cf3e2f764dc2639f641167c3b438e554d546b.zip |
need to use \OC_Image to escape OCP namespace
Diffstat (limited to 'lib/public/image.php')
-rw-r--r-- | lib/public/image.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/image.php b/lib/public/image.php index dcecc077e2f..c6dd9a113ab 100644 --- a/lib/public/image.php +++ b/lib/public/image.php @@ -25,5 +25,5 @@ namespace OCP; /** * This class provides functions to handle images */ -class Image extends OC_Image { +class Image extends \OC_Image { } |