- delete unused script

This commit is contained in:
Jonathan Ernst
2005-01-30 23:14:14 +00:00
committed by WineHQ
parent 2083bf521b
commit 9d3ada474c

View File

@@ -1,20 +0,0 @@
<?php
/************************************************/
/* code to show a queued image */
/************************************************/
include("path.php");
require(BASE."include/"."incl.php");
if(!havepriv("admin"))
{
errorpage("Insufficient privileges.");
exit;
}
if($info=getimagesize("../data/queued/screenshots/".$_REQUEST['queueId']))
{
header('Content-type: '.$info['mime']);
$handle = fopen("../data/queued/screenshots/".$_REQUEST['queueId'], "rb");
echo fread($handle, filesize("../data/queued/screenshots/".$_REQUEST['queueId']));
fclose($handle);
}
?>