]> jfr.im git - uguu.git/commitdiff
Update core.php
authorEric Johansson (neku) <redacted>
Wed, 7 Oct 2015 22:27:39 +0000 (00:27 +0200)
committerEric Johansson (neku) <redacted>
Wed, 7 Oct 2015 22:27:39 +0000 (00:27 +0200)
includes/core.php

index 7a1e4d621dcfad15224f97ea022ed7e0a7b86178..320c21c0f9eb11fe325375ddb83baeb191538a72 100644 (file)
@@ -42,8 +42,17 @@ function save_file ($file, $name, $arg, $type){
     }
     //Move the file to the above location with said filename
     move_uploaded_file($file,$path.$file_name);
-    //Return url+filename to the user
+    //Check if html or plain text should be returned
+    if($type==='tool'){
+    //Return url+filename to the user (plain text)
     echo 'http://a.uguu.se/'.urlencode($file_name);
+    exit(0);
+    }elseif($type==='normal'){
+    //Return url+filename to the user (HTML)
+    $n=urlencode($file_name);
+    include_once('/home/neku/www/page/public/upload-done.php');
+    exit(0);
+    }
 }
 function gen_name($arg, $in){
     $chars = 'abcdefghijklmnopqrstuvwxyz';