diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-07-22 19:19:01 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-07-22 19:19:01 +0200 |
commit | 7abf35b085fe9ba22c045c3b82431ddab32c5a90 (patch) | |
tree | d4fbd5869c41c0f0da14015b59896a9483cc34e2 | |
parent | bc86ce00cfb94cb607c2a7895417c1846bb971ec (diff) | |
parent | cb4cf3e2f764dc2639f641167c3b438e554d546b (diff) | |
download | nextcloud-server-7abf35b085fe9ba22c045c3b82431ddab32c5a90.tar.gz nextcloud-server-7abf35b085fe9ba22c045c3b82431ddab32c5a90.zip |
Merge pull request #4156 from owncloud/fix_oc_image_reference
* owncloud/fix_oc_image_reference:
need to use \OC_Image to escape OCP namespace
-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 { } |