From 1bf62f1bc10831d559df147868dd889e5985adcc Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sat, 20 Jun 2009 20:52:39 +0000 Subject: cleaned up icon code - don't need tidypics/icon view anymore - may reinstate it at a later time --- actions/icon.php | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 actions/icon.php (limited to 'actions') diff --git a/actions/icon.php b/actions/icon.php deleted file mode 100644 index bfc18198a..000000000 --- a/actions/icon.php +++ /dev/null @@ -1,36 +0,0 @@ -thumbnail; - $mime = $file->mimetype; - - header("Content-type: $mime"); - if (strpos($mime, "image/")!==false) - header("Content-Disposition: inline; filename=\"$filename\""); - else - header("Content-Disposition: attachment; filename=\"$filename\""); - - - $readfile = new ElggFile(); - $readfile->owner_guid = $file->owner_guid; - $readfile->setFilename($filename); - - $contents = $readfile->grabFile(); - - if (empty($contents)) - echo file_get_contents(dirname(dirname(__FILE__)) . "/graphics/icons/general.jpg" ); - else - echo $contents; - - exit; - } else { - register_error(elgg_echo("file:downloadfailed")); - } -?> \ No newline at end of file -- cgit v1.2.3