mirror of
https://github.com/nokonoko/Uguu.git
synced 2024-01-06 13:35:15 +00:00
Merge pull request #3 from nixxquality/nixxquality-patch-1
URL encode the returned filename
This commit is contained in:
commit
9539b2959c
@ -1,4 +1,4 @@
|
|||||||
?php
|
<?php
|
||||||
function save_file ($file, $name, $arg){
|
function save_file ($file, $name, $arg){
|
||||||
//Where to save
|
//Where to save
|
||||||
$path='/home/neku/www/files/';
|
$path='/home/neku/www/files/';
|
||||||
@ -22,7 +22,7 @@ function save_file ($file, $name, $arg){
|
|||||||
//Move the file to the above location with said filename
|
//Move the file to the above location with said filename
|
||||||
move_uploaded_file($file,$path.$file_name);
|
move_uploaded_file($file,$path.$file_name);
|
||||||
//Return url+filename to the user
|
//Return url+filename to the user
|
||||||
echo 'http://a.uguu.se/'.$file_name;
|
echo 'http://a.uguu.se/'.urlencode($file_name);
|
||||||
}
|
}
|
||||||
function gen_name($arg, $in){
|
function gen_name($arg, $in){
|
||||||
$chars = 'abcdefghijklmnopqrstuvwxyz';
|
$chars = 'abcdefghijklmnopqrstuvwxyz';
|
||||||
|
Loading…
Reference in New Issue
Block a user