diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-04-22 20:44:11 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-04-22 20:47:24 +0200 |
commit | e8f062dc935b6bd9b8047594affda491c659b79a (patch) | |
tree | d209e80d63e42459c51db7417d9c4cfb29b91aac /apps/contacts/ajax/uploadphoto.php | |
parent | 8a6cb23170b95336770bc4dcd6d58583de82815e (diff) | |
download | nextcloud-server-e8f062dc935b6bd9b8047594affda491c659b79a.tar.gz nextcloud-server-e8f062dc935b6bd9b8047594affda491c659b79a.zip |
Contacts:
- Added overlay toolbar to contact photo with 'Delete current', 'Edit current', 'Load from OC_Filesystem' and 'Upload' options.
- Made action icons translucent instead of hiding them.
Diffstat (limited to 'apps/contacts/ajax/uploadphoto.php')
-rw-r--r-- | apps/contacts/ajax/uploadphoto.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/contacts/ajax/uploadphoto.php b/apps/contacts/ajax/uploadphoto.php index 9780df46476..15d4718241e 100644 --- a/apps/contacts/ajax/uploadphoto.php +++ b/apps/contacts/ajax/uploadphoto.php @@ -36,19 +36,6 @@ function debug($msg) { OC_Log::write('contacts','ajax/uploadphoto.php: '.$msg, OC_Log::DEBUG); } -// foreach ($_SERVER as $key=>$element) { -// debug('$_SERVER: '.$key.'=>'.$element); -// } -// foreach ($_GET as $key=>$element) { -// debug('_GET: '.$key.'=>'.$element); -// } -// foreach ($_POST as $key=>$element) { -// debug('_POST: '.$key.'=>'.$element); -// } -// foreach ($_FILES as $key=>$element) { -// debug('_FILES: '.$key.'=>'.$element); -// } - // If it is a Drag'n'Drop transfer it's handled here. $fn = (isset($_SERVER['HTTP_X_FILE_NAME']) ? $_SERVER['HTTP_X_FILE_NAME'] : false); if ($fn) { |