JS corrections

This commit is contained in:
Shikiryu 2011-01-07 14:55:31 +00:00
parent 4007da6e9d
commit a3f7e375d4
1 changed files with 7 additions and 1 deletions

View File

@ -28,6 +28,12 @@ elseif($ret === ShortURL::STATE_ALREADY_EXIST){
exit;
}
else{
echo 'alert("Raccourci créé : http://'.$_SERVER['SERVER_NAME'].$folder.rawurlencode($newname).'");';
$URI = $_SERVER['REQUEST_URI'];
$folders = explode('/', $URI);
if(count($folders) > 2){
$folder = '/'.$folders[1].'/';
}else
$folder = '/';
echo 'alert("'.ShortURL::STATE_CREATED.' : http://'.$_SERVER['SERVER_NAME'].$folder.rawurlencode($s).'");window.clipboardData.setData("Text", "http://'.$_SERVER['SERVER_NAME'].$folder.rawurlencode($s).'");';
exit;
}