Allow shell scripts to be uploaded.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10859 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2011-10-24 00:15:24 +00:00
parent 3086de5786
commit c7b91976a9

View File

@ -3,7 +3,7 @@
* Upload a given file into /var/tmp
*/
$type = $_FILES["file"]["type"];
if ($type == "text/plain" || $type == "application/octet-stream") {
if ($type == "text/plain" || $type == "application/octet-stream" || $type == "application/x-shellscript") {
$error = $_FILES["file"]["error"];
if ($error) {
echo "Return Code: " . $error;
@ -24,6 +24,6 @@ if ($type == "text/plain" || $type == "application/octet-stream") {
unlink($path);
}
} else {
echo "(Error) File type not supported";
echo "(Error) File type $type not supported";
}
?>