From 673e408c6eb6dfaf064d18287372d689c41352be Mon Sep 17 00:00:00 2001 From: phamt Date: Wed, 23 Nov 2011 18:39:33 +0000 Subject: [PATCH] Allowed shellscripts to be uploaded. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11043 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/lib/upload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-UI/lib/upload.php b/xCAT-UI/lib/upload.php index a0fd5b864..2f33fc940 100644 --- a/xCAT-UI/lib/upload.php +++ b/xCAT-UI/lib/upload.php @@ -3,7 +3,7 @@ * Upload a given file into /var/tmp */ $type = $_FILES["file"]["type"]; -if ($type == "text/plain" || $type == "application/octet-stream" || $type == "application/x-shellscript") { +if ($type == "text/plain" || $type == "application/octet-stream" || $type == "application/x-shellscript" || $type == "application/x-sh") { $error = $_FILES["file"]["error"]; if ($error) { echo "Return Code: " . $error;