diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2015-07-09 13:04:53 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2015-07-09 13:40:13 +0200 |
commit | a727cbc7a92ce9e31bc3c3b2127ce4a66749d4b1 (patch) | |
tree | adb4d090f6271b0ce6604f2c62348812dc5316c8 /apps/files/ajax | |
parent | 5c381ea5326501e316704b642aa5b82acd45b20b (diff) | |
download | nextcloud-server-a727cbc7a92ce9e31bc3c3b2127ce4a66749d4b1.tar.gz nextcloud-server-a727cbc7a92ce9e31bc3c3b2127ce4a66749d4b1.zip |
Remove ajax/mimeicon.php and its route
Diffstat (limited to 'apps/files/ajax')
-rw-r--r-- | apps/files/ajax/mimeicon.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/apps/files/ajax/mimeicon.php b/apps/files/ajax/mimeicon.php deleted file mode 100644 index 008ad41953e..00000000000 --- a/apps/files/ajax/mimeicon.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php -/** - * @author Jörn Friedrich Dreyer <jfd@butonic.de> - * @author Lukas Reschke <lukas@owncloud.com> - * @author Robin Appelman <icewind@owncloud.com> - * - * @copyright Copyright (c) 2015, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -\OC::$server->getSession()->close(); - -$mime = isset($_GET['mime']) ? (string)$_GET['mime'] : ''; - -print OC_Helper::mimetypeIcon($mime); |